用jQuery写了一个分页表格,有一个全选的按钮,全选只能选中当前页的表格数据,我想点击这个全选按钮后,就所有页面的数据都选中了,请问该怎么实现
这是全选框的代码
<input type="checkbox" id="checkedAll">
$("#checkedAll").click(function(){
$(".xk").prop("checked", this.checked)
if (this.checked) {
qxfu();
} else {
del = [];
}
}