日期:2014-05-16 浏览次数:20373 次
$(document).ready(function () {
$("#cr").click(function () {
if (this.checked) { //DOM方式判断
alert("感谢你的支持!你可以继续操作!");
}
})
});
$(document).ready(function () {
$("#cr").click(function () {
if ($(this).attr("checked")) { //Jquery方式判断
alert("感谢你的支持!你可以继续操作!");
}
})
});
$(document).ready(function () {
$("#cr").click(function () {
if ($(this)get(0).checked)){ //DOM方式判断 $(this)[0],$(this).get(0) Jquery对象转成DOM
alert("感谢你的支持!你可以继续操作!");
}
})
});