如何从地址栏调用JavaScript?

发布于 2024-12-14 02:01:19 字数 117 浏览 0 评论 0原文

这个脚本应该可以工作:

javascript:alert('b');

它可以在 Opera 中工作,但不能在 Firefox 中工作。 我做错了什么吗?

This script should work:

javascript:alert('b');

It works in Opera for me, but doesn't work in Firefox..
Am I doing something wrong?

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

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

发布评论

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

评论(1

甜`诱少女 2024-12-21 02:01:19

javascript:alert('b'); 就足够了。


更新:新版本的 Firefox 不允许您访问 window ,从而 - 从地址栏中输入的 javascript:url 到 window.alert() 。使用 throw 'sometext',并在控制台中查看结果(是的,作为错误)。这是您现在可以拥有的唯一输出。

javascript:alert('b'); would be enough.


Update: new versions of Firefox don't give you access to window and thus - to window.alert() from javascript:urls typed in address bar. Use throw 'sometext', and see the result in console (yes, as an error). That's the only output you can have now.

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