我如何“触发”从书签加载的外部脚本文件

发布于 2024-10-13 08:38:53 字数 191 浏览 5 评论 0原文

我成功地通过书签将脚本加载到现有页面中。 (可以告诉我在firebug中看到的成功的js请求) 下一步是让脚本运行。

这就是我的外部脚本的样子。

javascript: (function () {
    alert('hello world');
}

我没有看到警报。缺少什么吗?

I successfully loaded a script into an existing page by bookmarklet.
(Can tell my a success js request seen in firebug)
The next step is to make the script run.

This is what my external script looks like.

javascript: (function () {
    alert('hello world');
}

and I don't see the alert. Missing something?

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

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

发布评论

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

评论(1

凤舞天涯 2024-10-20 08:38:53

未调用该函数,并且出现语法错误(缺少右括号 ))。您可以使其成为立即执行的函数:

javascript: (function () {
    alert('hello world');
}())

更新:如果您实际上通过书签将脚本标记注入头部,那么您不需要javascript:在文件中。

The function is not called and you have a syntax error (missing closing bracket )). You can make it an immediate executed function:

javascript: (function () {
    alert('hello world');
}())

Update: If you are actually injecting a script tag into the head via the bookmarklet, then you don't need to have javascript: in the file.

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