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

字號(hào):


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