Jquery对回复者添加匿名评论选项

 通过prop方法获取checked属性,获取的checked返回值为boolean,选中为true,否则为flase
<input type="checkbox" id="selectAll" onclick="checkAll()">全选
function checkAll()
{
var checkedOfAll=$("#selectAll").prop("checked");
alert(checkedOfAll);
$("input[name='procheck']").prop("checked", checkedOfAll);
}
false=
选中是true,不选中是false= 就是不匿名 <input type="checkbox" id="selectAll" onclick="checkAll()">全选 function checkAll()
{
var checkedOfAll=$("#selectAll").prop("checked");
$("input[name='procheck']").prop("checked", checkedOfAll);
user_status=Number( checkedOfAll );
alert(user_status); }
上一篇:php-有效删除多个表中的数据mySQLi Prepared Statement


下一篇:PHP-表的第一行未显示在下拉列表中