标签:javascript
<html>
<head>
<title>javascript中的延迟脚本技术<title>
<script type="text/javascript" defer="defer" src="some.js"></script>
<head>
<body>
<!-- 内容-->
</body>
<html>
defer:作用脚本在执行时,脚本会延迟到整个页面都解析完毕后在运行。
标签:javascript
原文地址:http://blog.csdn.net/hephec/article/details/39299965