1. var status=$("#rem").attr("checked");
console.log(status) //原则上没错 但是出现的是 undefined
2. var status=$("#rem").is(":checked");
console.log(status) //true 或 false
3. var status= $(‘#rem‘).prop(‘checked‘);
console.log(status) //true 或 false
原文:http://www.cnblogs.com/tingyatou/p/6903794.html