jQuery遍歷頁面所有CheckBox查看是否被選中的方法

字號:


    具體如下:
    $('#tbl').find(':checkbox').each(function(){
    if ($(this).is(":checked")) {
    //操作
    }
    });