function checkAll(id) { //用is判断 // let checkStatus=$(id).is(':checked'); // console.log(checkStatus) //用prop方法(用attr获取不到) let checkStatus=$(id).prop("checked"); console.log(checkStatus)}
html:
这里注意传入id的时候记得一定要加#,或者在jquery代码中加#,否则就看不到结果了。
本文共 258 字,大约阅读时间需要 1 分钟。
function checkAll(id) { //用is判断 // let checkStatus=$(id).is(':checked'); // console.log(checkStatus) //用prop方法(用attr获取不到) let checkStatus=$(id).prop("checked"); console.log(checkStatus)}
html:
这里注意传入id的时候记得一定要加#,或者在jquery代码中加#,否则就看不到结果了。
转载地址:http://gbevx.baihongyu.com/