Posted in Javascript onSeptember 28, 2014
1. 页面中直接引用
<script src="a.js"><\/script> <script src="b.js"><\/script>
2.动态写入页面
document.write('<script src="a.js"><\/script>') document.write('<script src="b.js"><\/script>')
3.模拟包含函数
function include(path){ var a=document.createElement("script"); a.type = "text/javascript"; a.src=path; var head=document.getElementsByTagName("head")[0]; head.appendChild(a); } include("a.js") include("b.js")
4.js模块化编程
require.js的方法
js文件包含的几种方式介绍
- Author -
whsnow声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@