html中加入js的方法:1、在页面中直接嵌入JavaScript代码,语法“js代码”;2、将js代码写入“.js”文件中,使用“”语句引用。 本教程操作环境:windows7系统、HTML5&&javascript1.8.5版、Dell G3电脑。 在HTML中引入JavaScript主要有两种方法,这两种方法都需要使用到标签。:</p> <p><strong>方法1:在页面中直接嵌入JavaScript代码</strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>JavaScript的引入</title> </head> <body> <script> var a=1; alert(a);