jQuery实现点击行选中或取消CheckBox的方法
Quber 人气:0本文实例讲述了jQuery实现点击行选中或取消CheckBox的方法。分享给大家供大家参考,具体如下:
/// <summary> /// 点击行选中或者取消CheckBox /// </summary> /// <param name="TableID">表ID</param> function SetCheckBox_Check(TableID) { var $TableID = TableID == "" ? "#tb_List" : "#" + TableID + ""; //循环每个tr行,添加click事件 $($TableID).find("tr").live("click", function () { //标题行不作任何操作 if (this.rowIndex == 0) return; if ($(this).find("input").attr("checked") == 'checked') { //已选中的行取消选中 $(this).find("input").attr("checked", false); } else { //未选中的行,进行选中 $(this).find("input").attr("checked", true); } }); }
希望本文所述对大家jQuery程序设计有所帮助。
加载全部内容