jquery – Html checkBox onchange无法正常工作

栏目: jQuery · 发布时间: 5年前

内容简介:Bro使用onclick事件代替onchange ..原因…根据我读过的Javascript引用,onchange之后会发生火灾
<input class="jProblemClass" id="Checkbox{%= ID %}" type="checkbox" onchange="problemPicker.onChangeProblemCheckBox('{%=ID %}');"/>

首先检查或取消选中后没有任何反应. Afetr第二次点击,调用我的函数problemPicker.onChangeProblemCheckBox,但我先得到ID检查.为什么?可以帮助我吗?

onChangeProblemCheckBox: function(id) {
    if ($('#CheckBox' + id).attr("checked") == true) {
        problemPicker.addToCheckProblems(id);

        var checkboxes = $('.jProblemClass:checked');

        if ((checkboxes.length > general.limit) && (general.limit != 0)) {
            alert('The limit of ' + general.limit + ' problems exceeded. Please deselect ' + (checkboxes.length - general.limit).toString() + '.');
        }
    } else {
        problemPicker.delFromCheckProblems(id);
    }
},

Bro使用onclick事件代替onchange ..

原因…

根据我读过的Javascript引用,onchange之后会发生火灾

焦点丢失了.除非你点击其他地方,否则IE中的焦点不会丢失.

其他浏览器不能等待焦点丢失

射击onchange – 这表明他们没有正确遵循规范

(尽管在这一点上开火更有意义).如何使用

改为onclick和onkeydown / onkeyup(通过使用onclick和

onkeyup / onkeydown,你可以覆盖鼠标和键盘设置

复选框).

参考: http://www.winvistatips.com/re-onchange-event-checkbox-not-working-properly-t311364.html

翻译自:https://stackoverflow.com/questions/4942437/html-checkbox-onchange-not-working


以上所述就是小编给大家介绍的《jquery – Html checkBox onchange无法正常工作》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Think Python

Think Python

Allen B. Downey / O'Reilly Media / 2012-8-23 / GBP 29.99

Think Python is an introduction to Python programming for students with no programming experience. It starts with the most basic concepts of programming, and is carefully designed to define all terms ......一起来看看 《Think Python》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

html转js在线工具
html转js在线工具

html转js在线工具