html脚本标签希望浏览器在它们之间获取脚本。我们可以期望这些脚本位于以下位置。
1.脚本可以放在html的head标签中
2.在HTML的身体标签中。
3.作为外部文件。
最重要的是,客户端脚本(例如JavaScript)放在脚本标签中。
<html> <body> <p>This example writes "JavaScript is not java" into an HTML element with id="script"</p> <p id="imp"></p> <script> document.getElementById("imp").innerHTML = "JavaScript is not java"; </script> </body> </html>
输出结果
This example writes "JavaScript is not java" into an HTML element with id="script" JavaScript is not java
每个JavaScript代码都应位于script标记中,否则将无法执行。在上述示例中,使用属性ID的代码已执行为“ JavaScript不是Java”。