(jQuery 1.4.4)我有一个复选框有一个.change()监听器,当用户点击复选框时工作正常,但现在我还需要它,当我以编程方式更改jQuery中的复选框时,使用.attr( ‘checked’,’checked’).我很高兴使用其他方法来使这项工作.谢谢.
$('#foo').attr('checked','checked'); // programmatically change the checkBox to checked,this checks the Box alright $('#foo').change( function() { // this works when user checks the Box but not when the above code runs }