欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

javascript學(xué)習(xí)筆記(一) 在html中使用javascript

 更新時(shí)間:2012年06月18日 21:04:10   作者:  
javascript學(xué)習(xí)筆記之在html中使用javascript 的方法,需要的朋友可以參考下
1.延時(shí)腳本運(yùn)行的方法:
方法一:把全部javascript引用放在<body>元素中,頁(yè)面內(nèi)容后,如
復(fù)制代碼 代碼如下:

<html>
<head>
<title>示例1</title>
</head>
<body>
<!--頁(yè)面內(nèi)容-->
<script type="text/javascript" src="example1.js"></script>
<script type="text/javascript" src="example2.js"></script>
</body>
</html>

方法二:為<script>元素定義defer屬性defer="defer",如
復(fù)制代碼 代碼如下:

<html>
<head>
<title>示例1</title>
<script type="text/javascript" defer="defer" src="example1.js"></script>
<script type="text/javascript" defer="defer" src="example2.js"></script>
</head>
<body>
<!--頁(yè)面內(nèi)容-->
</body>
</html>

相關(guān)文章

最新評(píng)論