为什么这个 JavaScript 在 IE8 中不起作用?

发布于 2024-09-13 14:08:11 字数 244 浏览 3 评论 0原文

<form action="http://google.com">
  <input type="submit" onclick="javascript:this.disabled='disabled';return true">
</form>

它可以在 Firefox 中运行,但不能在 IE8、Safari 中运行(它应该将我转发到 Google 的网站,但没有发生。)。为什么?

<form action="http://google.com">
  <input type="submit" onclick="javascript:this.disabled='disabled';return true">
</form>

It works in Firefox, but not in IE8, Safari (It should forward me to Google's site, it but doesn't happen.). Why?

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

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

发布评论

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

评论(2

别再吹冷风 2024-09-20 14:08:11

请尝试以下操作:

<input type="submit" onclick="this.disabled='disabled';form.submit()">

编辑:根据 wamp 的评论添加了form.

Try this instead:

<input type="submit" onclick="this.disabled='disabled';form.submit()">

Edit: Added form. as per wamp's comment.

人心善变 2024-09-20 14:08:11

您不需要 javascript: 伪协议。这应该有效:

onclick="this.disabled=true"

并且您不需要返回 true,这会自动发生。

You don't need the javascript: pseudoprotocol. This should work:

onclick="this.disabled=true"

and you don't need to return true, that'll happen automatically.

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