[이윰] 내글반응 페이지 내 전체 선택 체크박스 올바르게 적용하기

페이지 정보

shadow2fox 1,953 2019.05.06 22:05

평점

본문

내글반응 페이지 내 전체 선택 체크박스 올바르게 적용하기
본인 홈만의 문제인지 알 수 없으나 페이지 내 전체 반응글 토글 체크가 올바르게 적용되지 않는다면
그누보드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"));        //토글 올바르게
    });
});
추천인
  • 추천해 주세요
10
shadow2fox - 회원등급 : 자연/Level 142 - 포인트 : 2,537,346
레벨 142
경험치 3,029,880

Progress Bar 63%

- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은 자기 자신에게 기회를 주는 것이다. - 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.

댓글

첫 번째 댓글을 남겨 주세요