和JS部分:
$('input').click(function(e) {
e.stopPropagation();
});
在Mozilla上,当我点击复选框时,它会停止传播,但仍会转到该锚点(picture-big.jpg).
如果我使用return false或e.preventDefault()(并使用jQuery检查复选框($(‘input’).prop(‘checked’,true);)它不检查输入.
想法是选中复选框而不跟随链接.在Chrome和IE上,它正在运行.但不是Mozilla.
有任何想法吗?
最佳答案
我建议重组您的标记,如果不可能,以下方法可行:
原文链接:https://www.f2er.com/jquery/428697.html$('input').click(function(e) {
e.preventDefault();
var that = this;
setTimeout(function() { that.checked = !that.checked; },1);
});