在书签中包含 JavaScript 文件
我想在我的 Bookmarklet 中使用 jQuery。我将 bookmarklet.js 的源代码包含到 bookmarklet 中,因此没有更多的空间来放置 jQuery 文件。
我尝试将 jQuery 包含在包含的 bookmarklet.js 中
var s=document.createElement('script');
s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
document.getElementsByTagName('body')[0].appendChild(s);
,但它不起作用。我做错了什么?
I want to use jQuery in my Bookmarklet. I included the source to my bookmarklet.js into the bookmarklet, so there is no more place for the jQuery File.
I've tried this to include jQuery inside the included bookmarklet.js
var s=document.createElement('script');
s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
document.getElementsByTagName('body')[0].appendChild(s);
But it doesn't work. What did I do wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加一个属性来指定源文件的类型:
try adding one more attribute to specify the type of the source file: