Home > Article > Development Tools > How to use js in phpstorm
1. PHPStorm debugging Javascript
Create test.html in PHPStorm
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Test page</title> <script> var test; var test2; console.log("hello world!"); console.log("hello world3!"); </script> </head> <body> <p>Test</p> </body> </html>
In Right click on the test.html file.
Related recommendations: "PhpStorm Usage Tutorial"
##Select Debug 'test.html' .This Chrome browser will prompt to install JetBrain IDE Support. Just choose to install. This way you can adjust js in PHPStorm. As shown below, press F8 in PHPstorm to execute the next step.2. PHPStorm adjusts php and js at the same time
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Test page</title> <script src="tt.js" ></script> </head> <body> <p>Test</p> <a onclick="testClick()">test click</a> <?php echo '<br>'; echo 'This is php code'; echo 'This is php code2'; ?> </body> </html>where tt Configure the js file
var test; var test2; console.log("hello world!"); console.log("hello world3!"); function testClick(){ console.log("test1"); console.log("test2"); }in PHPStorm as follows: Set the breakpoint and start the debugging.
The above is the detailed content of How to use js in phpstorm. For more information, please follow other related articles on the PHP Chinese website!