[이윰] 내글반응 페이지 내 전체 선택 체크박스 올바르게 적용하기
페이지 정보
shadow2fox
2,509
2019.05.06 22:05:23
짧은주소
-
https://yadolee.com/tip/647 주소복사
본문
내글반응 페이지 내 전체 선택 체크박스 올바르게 적용하기
본인 홈만의 문제인지 알 수 없으나 페이지 내 전체 반응글 토글 체크가 올바르게 적용되지 않는다면
그누보드5/eyoom/theme/설치된 테마/skin_bs/respond/basic/respond.skin.html를 열어 아래와 같이 수정한다.
수정 전
수정 후
그누보드5/eyoom/theme/설치된 테마/skin_bs/respond/basic/respond.skin.html를 열어 아래와 같이 수정한다.
수정 전
$(function(){
$('#all_chk').click(function(){
$('[name="rid[]"]').attr('checked', this.checked);
});
});
수정 후
$(function(){
$('#all_chk').change(function(){
$('[name="rid[]"]').prop('checked', this.checked); //토글 올바르게
});
})
또는
$(function(){
$('#all_chk').change(function(){
$('[name="rid[]"]').prop('checked', $(this).prop("checked")); //토글 올바르게
});
});
추천인
레벨 149
경험치 3,343,659
Progress Bar 80.23%
- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은
자기 자신에게 기회를 주는 것이다.
- 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.


댓글
첫 번째 댓글을 남겨 주세요