admin管理员组文章数量:1345096
I have a project that requires some values to get updated with JavaScript from an HTML radio change event.
For some reason in IE, it seems that the onchange event isn't called until the radio has lost focus. Unfortunately due to the way the code is setup, I can't use the click event and have to use the change event.
Does anyone know of a way to force IE to raise the change event as soon as the check is changed rather than when it looses focus?
Thanks.
I have a project that requires some values to get updated with JavaScript from an HTML radio change event.
For some reason in IE, it seems that the onchange event isn't called until the radio has lost focus. Unfortunately due to the way the code is setup, I can't use the click event and have to use the change event.
Does anyone know of a way to force IE to raise the change event as soon as the check is changed rather than when it looses focus?
Thanks.
Share Improve this question edited Dec 22, 2015 at 14:17 piet.t 11.9k21 gold badges44 silver badges55 bronze badges asked Sep 30, 2009 at 15:48 Ryan SmithRyan Smith 8,34422 gold badges78 silver badges103 bronze badges2 Answers
Reset to default 8Just to add, you can force IE to trigger the onChange
event using the onClick
event, so if you are allowed use the onClick
event to trigger the change event, this should do it:
<input type="radio" onclick="this.blur();"/>
I had the same exact issue. The only options I found were:
Use a js framework that consolidates all of the browser to browser idiosyncrasies (you're going to want to do this, trust me. Have you tested your page in Safari yet?)
If you need the event to trigger but don't want to use
onclick
, useonfocus
oronblur
. If you useonblur
for the OTHER radios, it is almost identical.
本文标签: javascriptIE HTML radio change eventStack Overflow
版权声明:本文标题:javascript - IE HTML radio change event - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768276a2535645.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论