标签:
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8" />
5 <title></title>
6 <!--外部引入方式必须注意,引入自己能够控制的 js 代码-->
7 <script type="text/javascript" src="js/index.js"></script>
8
9
10
11 <!--script标签可以有无数个-->
12 <script type="text/javascript">
13 //这里面写 js 代码
14 </script>
15 </head>
16 <body>
17
18
19 <script type="text/javascript">
20 //这里面写 js 代码
21 </script>
22
23 </body>
24
25 <!--此处也可以引入js 代码-->
26 <script type="text/javascript" src="js/index.js"></script>
27
28 <!--推荐写在 body 结束之后-->
29 <script type="text/javascript">
30 //这里面写 js 代码
31 </script>
32 </html>
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8" />
5 <title></title>
6 <!--外部引入方式必须注意,引入自己能够控制的 js 代码-->
7 <script type="text/javascript" src="js/index.js"></script>
8
9
10
11 <!--script标签可以有无数个-->
12 <script type="text/javascript">
13 //这里面写 js 代码
14 </script>
15 </head>
16 <body>
17
18
19 <script type="text/javascript">
20 //这里面写 js 代码
21 </script>
22
23 </body>
24
25 <!--此处也可以引入js 代码-->
26 <script type="text/javascript" src="js/index.js"></script>
27
28 <!--推荐写在 body 结束之后-->
29 <script type="text/javascript">
30 //这里面写 js 代码
31 </script>
32 </
标签:
原文地址:http://www.cnblogs.com/PowellZhao/p/5537467.html