使用 DOM 添加外部 .js,然后从 .js 调用函数
我正在尝试建立一个书签。我想最小化书签中 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 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.)这是一种跨浏览器加载脚本的方法:
您可以像这样使用它:
Here is a cross browser way to load scripts:
You can use it like this: