时间:2021-07-01 10:21:17 帮助过:4人阅读
<html>
<head>
<title>示例1</title>
</head>
<body>
<!--页面内容-->
<script type="text/javascript" src="example1.js"></script>
<script type="text/javascript" src="example2.js"></script>
</body>
</html>
方法二:为<script>元素定义defer属性defer="defer",如
代码如下:
<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>
<!--页面内容-->
</body>
</html>