本文介绍了OnChange 未在 IE 中触发的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望为 DIV 中表单元素的所有更改触发 Onchange 事件

这是片段

当焦点从任何表单元素丢失到表单的新元素时,当某些内容更新(例如:输入框更新)时,将触发该事件

以上代码适用于所有浏览器,但不适用于 IE,任何方法都是 IE

解决方案

其实 IE,尤其是 IE7/8 对 onchange 事件的支持不是很好.我建议您使用 onclick 事件.

I wish to fire a Onchange event for all the changes of Form elements within a DIV

Here's the snippet

<html>
<body>

<div id="container">
    <input type="checkbox"/>
    <input type="checkbox"/>
    <input type="text"/>
    <input type="text"/>
</div>

<script>
di = document.getElementById("container");
di.onchange = function(a){
alert("On Change Called");
}

di.onclick = function(a){
 alert("On Click Called");
}

</script>

</body>
</html>

The event is fired, when a focus is lost from any of the form elements to a new element of the form, when some content is updated (eg: the input box is updated)

The above code works fine for all browsers' but not for IE, any way to do this is IE

解决方案

Actually, IE, especially IE7/8 doesn't support onchange event very well . I do recommend you use onclick event.

这篇关于OnChange 未在 IE 中触发的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 22:38