在书签中包含 JavaScript 文件

发布于 2024-11-04 14:29:16 字数 354 浏览 0 评论 0原文

我想在我的 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 技术交流群。

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

发布评论

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

评论(1

格子衫的從容 2024-11-11 14:29:16

尝试添加一个属性来指定源文件的类型:

s.setAttribute('type', 'text/javascript');

try adding one more attribute to specify the type of the source file:

s.setAttribute('type', 'text/javascript');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文