회원가입 약관동의 전체동의 보완
그누보드 5.5.8.2.7 버전기준(이전버전 포함)
회원가입 시 약관동의 페이지에서 전체 동의 부분
전체동의 체크 후 각 약관 해제 시 전체동의에 체크되어 있음
각각의 동의사항 체크하게되면 전체동의 체크 안됨

해결방안
현재 적용중인 테마의 skin/member/ 폴더의 register.skin.php 파일
91~100번째 줄
[code]
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);
}
});
});
[/code]
의 내용을 아래와 같이 변경해 주시면 됩니다.
[code]
/* 체크박스 전체 관련 오류 수정 2023-02-05 */
jQuery(function($){
$("input[name=chk_all").click(function() {
if($("input[name=chk_all").is(":checked")) $("input[name=agree],input[name=agree2]").prop("checked", true);
else $("input[name=agree],input[name=agree2]").prop("checked", false);
});
$("input[name=agree],input[name=agree2]").click(function() {
var total = $("input[name=agree],input[name=agree2]").length;
var checked = $("input[name=agree]:checked,input[name=agree2]:checked").length;
if(total != checked) $("input[name=chk_all").prop("checked", false);
else $("input[name=chk_all").prop("checked", true);
});
});
[/code]
적용하게되면 각각 체크박스 선택 시 자동으로 전체동의에 체킹
전체동의 체크 후 각 체크박스 해제시 전체동의 체크해제가 가능해 집니다.
댓글 5개
감사합니다.
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4427 | ||
| 2274 | 2년 전 | 2066 | ||
| 2273 |
|
2년 전 | 1487 | |
| 2272 | 2년 전 | 2469 | ||
| 2271 | 2년 전 | 2070 | ||
| 2270 |
|
2년 전 | 2090 | |
| 2269 |
|
2년 전 | 1892 | |
| 2268 | 2년 전 | 3850 | ||
| 2267 | 2년 전 | 2901 | ||
| 2266 |
|
2년 전 | 2124 | |
| 2265 | 2년 전 | 1643 | ||
| 2264 | 2년 전 | 2123 | ||
| 2263 | 2년 전 | 1992 | ||
| 2262 | 2년 전 | 1541 | ||
| 2261 |
|
2년 전 | 1452 | |
| 2260 | 2년 전 | 2441 | ||
| 2259 |
welcome
|
2년 전 | 1778 | |
| 2258 |
welcome
|
2년 전 | 1307 | |
| 2257 | 2년 전 | 3056 | ||
| 2256 | 2년 전 | 1317 | ||
| 2255 |
|
2년 전 | 1825 | |
| 2254 | 2년 전 | 1798 | ||
| 2253 |
welcome
|
2년 전 | 1572 | |
| 2252 |
welcome
|
2년 전 | 1343 | |
| 2251 | 2년 전 | 2397 | ||
| 2250 | 2년 전 | 2032 | ||
| 2249 | 2년 전 | 1819 | ||
| 2248 | 2년 전 | 1632 | ||
| 2247 | 2년 전 | 2056 | ||
| 2246 | 2년 전 | 2467 | ||
| 2245 | 2년 전 | 1921 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기