장바구니에서 모두 선택 되지 않던 오류 수정
This commit is contained in:
@ -241,9 +241,9 @@ $(function() {
|
|||||||
// 모두선택
|
// 모두선택
|
||||||
$("input[name=ct_all]").click(function() {
|
$("input[name=ct_all]").click(function() {
|
||||||
if($(this).is(":checked"))
|
if($(this).is(":checked"))
|
||||||
$("input[name='ct_chk[]']").attr("checked", true);
|
$("input[name^=ct_chk]").attr("checked", true);
|
||||||
else
|
else
|
||||||
$("input[name='ct_chk[]']").attr("checked", false);
|
$("input[name^=ct_chk]").attr("checked", false);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user