执行通过 bookmarklet 作为脚本元素注入的 javascript?

发布于 2024-12-06 09:17:53 字数 477 浏览 1 评论 0原文

我正在使用 bookmarklet 通过自定义 JS 脚本文件在文档中注入元素。我是这样做的:

var newscript = document.createElement('script');
newscript.type = 'text/javascript';
newscript.async = true;
newscript.src = 'http://www.myurl.com/my_js_script.js';
var oldscript = document.getElementsByTagName('script')[0];
oldscript.parentNode.insertBefore(newscript, oldscript);

但我不知道如何实际执行它。有人能告诉我如何执行该 JS 文件吗?

注意:由于这也可以是 Greasemonkey 脚本,因此我也为 Greasemonkey 标记了这个问题。

I am using bookmarklet to inject a element in document with a custom JS script file. I did it like this:

var newscript = document.createElement('script');
newscript.type = 'text/javascript';
newscript.async = true;
newscript.src = 'http://www.myurl.com/my_js_script.js';
var oldscript = document.getElementsByTagName('script')[0];
oldscript.parentNode.insertBefore(newscript, oldscript);

But I can't figure out how to actually execute it. Can someone tell me how can I execute that JS file?

Note: Since this can be a Greasemonkey script as well, I am tagging this question for Greasemonkey as well.

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

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

发布评论

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

评论(1

莫言歌 2024-12-13 09:17:53

脚本标签添加到文档后会自动下载并执行。但请注意,如果您要注入的文档尚未包含任何

Script tags are automatically downloaded and executed when they're added to the document. Note, however, that the script you're using may fail if the document you're injecting into doesn't already contain any <script> tags, as oldscript will be undefined.

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