在用户选中复选框的特定情况下,我想显示一条警告消息并取消选中该复选框,因此要取消选中我正在调用其上的单击功能的复选框,以便在内部取消选中并触发必要的事件。
我有一个复选框和标签,用于复选框,为标签正确设置for
属性
通过特定的超时,我能够解决这个问题,但我想要一个不使用超时的解决方案。
您可以在此处查看代码,也可以在此处访问jsfiddle。
$("#id1").on("change", function(event) {
if (event.target.checked) {
$(event.target).trigger("click");
}
});
$("#id2").on("change", function(event) {
setTimeout(function() {
if (event.target.checked) {
$(event.target).trigger("click");
}
}, 5);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<input type="checkbox" value="" id="id1">
<label for="id1">Click me</label>
<br/>
<input type="checkbox" value="" id="id2">
<label for="id2">Works with timeout</label>
This work quite well with Firefox but not in chrome and IE9, IE10
我正在寻找javascript或jQuery解决方案