我如何“触发”从书签加载的外部脚本文件
我成功地通过书签将脚本加载到现有页面中。 (可以告诉我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
未调用该函数,并且出现语法错误(缺少右括号
)
)。您可以使其成为立即执行的函数:更新:如果您实际上通过书签将脚本标记注入头部,那么您不需要
javascript:
在文件中。The function is not called and you have a syntax error (missing closing bracket
)
). You can make it an immediate executed function: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.