test.htm
<script src=1.js></script>
1.js
document.write("<script src=2.js></script>")
2.js
document.write(2)
注意,如果把1.js中的document.write("<script src=2.js></script>")
直接写在html文档中是需这样写:
document.write("<scr"+"ipt src=2.js></scr"+"ipt>")
不可以,因为js文件的后缀名为js,而php要求后缀名为php,所以冲突,不可以如果非要这么做,那么可以修改服务器(例如apache)的配置,使得对js文件也进行扫描解释,但是这样做会增加服务器的压力