1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 5 <title>使用JavaScript</title> 6 7 </head> 8 <body> 9 10 <noscript> 11 本站必须启用JavaScript 12 </noscript> 13 14 15 16 <script type="text/javascript"> 17 alert('欢迎来到JavaScript世界!'); 18 </script> 19 20 21 22 23 欢迎来到JavaScript世界! 24 25 26 </body> 27 </html>
1<script>标签的解析及几个相关的属性
(1)charset:可选的,指定字符集。
(2)type 必须的 表示代码使用脚本的类型 type = "text/javascript"
2为了有更好的维护性,通常用单独的文件写js文件
方法:通过src来指定路径
比如:<script type="text/javascript" src = "1.js"></script>
3不能用单标签
4让浏览器不启用js则用
<noscript></noscript>