码迷,mamicode.com
首页 > 其他好文 > 详细

IE下Checkbox标签的onchange事件兼容

时间:2015-11-19 14:46:47      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

Checkbox onchange事件在谷歌上ok,在ie8上不起作用了。

一番周折,测试发现勾选了以后还要点击其他位置才会触发onchange事件.

用度娘查询了一下.

有下面两种解决方式:

用onclick事件代替

1、<input type=checkbox onclick="alert(this.value)" value=huerreson>

用onpropertychange事件代替
2、<input type=checkbox onpropertychange="alert(this.value)" value=huerreson>

IE下,当一个HTML元素的属性改变的时候,都能通过 onpropertychange来捕获。

IE 6 / 7 / 8 下 checkbox 不会触发 onchange 事件,不管选中还是未选中。

所以你应该使用 onclick。

IE下Checkbox标签的onchange事件兼容

标签:

原文地址:http://www.cnblogs.com/luckly-hf/p/4977357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!