使用 DOM 添加外部 .js,然后从 .js 调用函数

发布于 2024-09-19 17:08:39 字数 974 浏览 6 评论 0原文

我正在尝试建立一个书签。我想最小化书签中 JavaScript 的大小,以便我可以在外部文件中维护大部分代码。我的目标是...
1) 将外部 .js 文件添加到页面。
2) 从外部 .js 文件调用函数。
3) 让该函数向页面添加其他 .js 文件(例如 JQuery 源)。

这是我的 1 号代码。它有效。

javascript:function bmksMain(){var script=document.createElement('script');script.src='http://localhost/bmks/bmksBmkMain.js';scriptObj=document.body.appendChild(script);}bmksMain();

这是 .js 文件的内容。

function bmksBmkMaster(){
      alert('debug1');
    var script, object;
    script = document.createElement('script');
    script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js';
    object = document.body.appendChild(script);
      alert('debug2');
    $("body").hide();
      alert('debug3');
}
bmksBmkMaster();

当我将书签代码粘贴到地址栏中并执行时,调试 1 和 2 会触发,然后就死掉了。然后,如果我再次执行而不刷新页面,所有三个调试都会触发,并且一切正常。

我可以不包含 .js 并在同一函数/脚本中使用它吗?发生了一些奇怪的事情......

提前致谢!

(在 IE7 和最新的 Chrome 中测试)

I'm trying to build a bookmarklette. I want to minimize the size of the javascript within the bookmarklette so that I can maintain most of the code in an external file. My goal is to...
1) Add an external .js file to the page.
2) Call a function from that external .js file.
3) Have that function add additional .js files to the page (a JQuery source for instance).

Here is my code for number 1. It works.

javascript:function bmksMain(){var script=document.createElement('script');script.src='http://localhost/bmks/bmksBmkMain.js';scriptObj=document.body.appendChild(script);}bmksMain();

Here is the contents of the .js file.

function bmksBmkMaster(){
      alert('debug1');
    var script, object;
    script = document.createElement('script');
    script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js';
    object = document.body.appendChild(script);
      alert('debug2');
    $("body").hide();
      alert('debug3');
}
bmksBmkMaster();

When I paste the bookmarklette code into an address bar and execute, debugs 1 and 2 fire and then it dies. Then, if I execute again without refreshing the page, all three debugs fire and it all works perfectly.

Can I not include a .js and use it in within the same function/script? Something funky is going on...

Thanks in advance!

(tested in IE7 and latest Chrome)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北风几吹夏 2024-09-26 17:08:39

查看 jQuerify Bookmarklet 文章及其后续文章,了解应该如何进行的示例完毕。 (例如,采用全局 $ 标识符是不明智的。)

Check the jQuerify Bookmarklet article and its successors for an example of how this should be done. (For example, taking the global $ identifier is not wise.)

森林迷了鹿 2024-09-26 17:08:39

这是一种跨浏览器加载脚本的方法:

function loadScript(scriptUrl, callback){
    var script = document.createElement('script');
    script.type='text/javascript';
    script.onload = function(){
        callback(); 
            callback = function(){};

    }
    script.onreadystatechange = function () {
        if(script.readyState === 'loaded' || script.readyState === 'complete'){
            callback();
                    callback = function(){};
        } 
    }
    script.src = scriptUrl;
    document.getElementsByTagName('head').item(0).appendChild(script);
}

您可以像这样使用它:

loadScript('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', function(){
  //hide body
});

Here is a cross browser way to load scripts:

function loadScript(scriptUrl, callback){
    var script = document.createElement('script');
    script.type='text/javascript';
    script.onload = function(){
        callback(); 
            callback = function(){};

    }
    script.onreadystatechange = function () {
        if(script.readyState === 'loaded' || script.readyState === 'complete'){
            callback();
                    callback = function(){};
        } 
    }
    script.src = scriptUrl;
    document.getElementsByTagName('head').item(0).appendChild(script);
}

You can use it like this:

loadScript('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', function(){
  //hide body
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文