register.skin.php 모두선택 질문
본문
jQuery(function($){
// 모두선택
$("input[name=chk_all]").click(function() {
if ($(this).prop('checked')) {
$("input[name^=agree]").prop('checked', true);
} else {
$("input[name^=agree]").prop("checked", false);
}
});
});
이 코드에서 input[name^=agree] 부분 질문입니다.
^= 가 무슨 뜻인가요?
!-->
답변을 작성하시기 전에 로그인 해주세요.