首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >动态加载jQuery

动态加载jQuery
EN

Stack Overflow用户
提问于 2012-06-27 01:27:37
回答 1查看 6.4K关注 0票数 9

我在使用Javascript加载jQuery时遇到了问题。我需要用Javascript加载它,因为有一些情况我只能在客户端知道。被注释掉的代码应该是用来初始化脚本的,但我对它们一无所知。

代码语言:javascript
复制
var script_tag = document.createElement('script');
script_tag.setAttribute("type","text/javascript");
script_tag.setAttribute("src","http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js")
//script_tag.onload = main; // Run main() once jQuery has loaded
//script_tag.onreadystatechange = function () { // Same thing but for IE
    //if (this.readyState == 'complete' || this.readyState == 'loaded') main();
//}
document.getElementsByTagName("head")[0].appendChild(script_tag);

http://mybsabusiness.com/samplesites/silver/sbsa01/

这就是问题所在的网站。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2012-06-27 01:34:51

jQuerify bookmarlet中:

代码语言:javascript
复制
function getScript(url, success) {
    var script = document.createElement('script');
    script.src = url;
    var head = document.getElementsByTagName('head')[0],
        done = false;
    // Attach handlers for all browsers
    script.onload = script.onreadystatechange = function() {
      if (!done && (!this.readyState
           || this.readyState == 'loaded'
           || this.readyState == 'complete')) {
        done = true;
        success();
        script.onload = script.onreadystatechange = null;
        head.removeChild(script);
      }
    };
    head.appendChild(script);
}
getScript('http://code.jquery.com/jquery-latest.min.js',function() {
    // Yay jQuery is ready \o/
});​
票数 16
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/11212809

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档