使用 Google Chrome 和 IE7 破解 Javascript Form Onchange

发布于 2024-10-31 06:46:26 字数 374 浏览 2 评论 0原文

<form onchange="return valid('form changed')">
 <select>
  <option>uno</option>
  <option>dos</option>
 </select>
 <input type="radio" name="videoDevice" value="cuatro" checked="checked" />
</form>

onchange 事件不适用于 google chrome 和 ie7 ...如何破解它... select 标签不需要 onchange 并且我们不能使用 jquery ...

<form onchange="return valid('form changed')">
 <select>
  <option>uno</option>
  <option>dos</option>
 </select>
 <input type="radio" name="videoDevice" value="cuatro" checked="checked" />
</form>

onchange event is not working with google chrome and ie7 ... how to hack it ...
onchange is not required on select tag and we can't use jquery ...

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

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

发布评论

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

评论(2

昔日梦未散 2024-11-07 06:46:26

没有需要 onsubmit 验证的 onchange 事件

在发布到服务器之前

根据元素挂接 dom 元素 onclick、onchange 上的一些事件
直接通知用户

there is no onchange event

you need onsubmit to validate prior to posting to the server
or
to hook up some events on the dom elements onclick, onchange depending on the element
that inform the user directly

土豪我们做朋友吧 2024-11-07 06:46:26

您也可以在输入上使用 jquery。

$("input").change(function(){ //Do stuff here });

You can use jquery on the input as well.

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