如何使用jquery实现gridview中checkbox(复选框)的全选功能?
发布网友
发布时间:2022-04-21 02:27
我来回答
共4个回答
热心网友
时间:2022-04-21 03:56
Gridview中用一般的对静态文件进行处理的方法不行,因为ID和name都是处理过的动态的
所以在用选择器的时候要用其它的表达式才行,这样就可以实现全选及全不选
$(function() {
//chkAll是全选按钮的ID
$("#chkAll").click(function() {
//chkExport是列表中复选框的id,及name
$("input[id][name$='chkExport']") .attr("checked",this.checked);
});
});
热心网友
时间:2022-04-21 05:14
仅提供个思路
页面绑定全选按钮执行的事件check(this);
查找同一行的点击按钮后一个单元格内所有的checkbox,选中或取消选中。
function check(obj){
$(obj).parent().next().children("checkbox").each(function() {
$(this).attr("checked", true);
}
).......}
热心网友
时间:2022-04-21 06:49
<#--全选与反选-->
function selectAll(){
if($("input[name='selectall']").attr("checked"))
{
$(':checkbox').each(
function() {
$(this).attr("checked", true);
}
);
}else{
$(':checkbox').each(
function() {
if($(this).attr("checked")){
$(this).removeAttr("checked");
}
}
);
}
}追问行选中没有搞定