最近在学习jquery 里面的DataTables.在里面碰到了checkbox 选中问题特总结如下:
$(function()
{
$("#all").click(function()
{
$("input[name='sh']").attr("checked",this.checked)
})
})
不知道是什么原因,使用
$("input[name='sh']").attr("checked",$(this).attr("checked"))无效
主要是通过jquery的方式获取到每个单元格,然后写css方法:table.dataTable, .table>tbody>tr>td, .table>thead:first-child>tr:first-child>th{
border:solid 1px
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)