使用 Google Chrome 和 IE7 破解 Javascript Form Onchange
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有需要 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
您也可以在输入上使用 jquery。
You can use jquery on the input as well.