我想通过 jQuery 本身而不是手动触发事件。
在这里更好地理解我的问题:
$('.commonCheck').change(function () {
if ($(".cashierCheck").attr("checked")) {
$('.cashierInput').fadeIn();
console.log("________________hr")
}
else{
$('.cashierInput').fadeOut();
console.log("_______________uncjecked")
}
}
我的复选框:
<input type="checkbox" name="cashierFilter" id="cashierFilter" class="cashierCheck commonCheck" class="mrL0" />
当我手动选中/取消选中复选框时,会触发更改事件而没有任何问题。但我希望事件在我以某种方式执行时发生:
$('#cashierFilter').prop('checked','true');