如何将.js链接包含到另一个.js中?

这个问题在这里已经有了答案:

  • 如何在另一个JavaScript文件中包含JavaScript文件? 51个答案

  • 您不能直接链接.js文件中的.js文件

    选中此项:如何在另一个JavaScript文件中包含JavaScript文件?

    它清楚地说明了如何将.js链接到.js文件中


    来自about.com的解决方案:

    在你的testing.js文件中创建这个函数:

    function addJavascript(jsname,pos) {
    var th = document.getElementsByTagName(pos)[0];
    var s = document.createElement('script');
    s.setAttribute('type','text/javascript');
    s.setAttribute('src',jsname);
    th.appendChild(s);
    }
    

    稍后使用以下命令调用该函数

    addJavascript('http://code.jquery.com/jquery-latest.js','head');
    addJavascript('http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js','head');
    

    其他方法很少,但不是所有浏览器都兼容。


    您只能在HTML页面中包含脚本文件,而不能在其他脚本文件中包含脚本文件

    链接地址: http://www.djcxy.com/p/42485.html

    上一篇: how do I include .js link into another .js?

    下一篇: How to know if JQuery has finished loading