以下代码在jquery 1.7.2中运行正常,但在jquery 1.3.2
中没有$(".selectallItem8CheckBox").click(function () {
$(".checkboxItem8select").prop("checked", $(".selectallItem8CheckBox").prop("checked"))
});
替代方案会有所帮助。 提前致谢
答案 0 :(得分:0)
对于jquery 1.5及更低版本,请使用.attr()
代替.prop()
:
$('.checkboxItem8select').attr('checked',$(".selectallItem8CheckBox").attr("checked"));
答案 1 :(得分:0)
.prop()
直到1.6才被添加。请改用.attr()