728x90
stackoverflow.com/questions/15266533/jquery-attrchecked-checked-works-only-once
답은 간단하게 .attr 대신 .prop 를 사용하는 것이다.
//$('input:checkbox[id="is_include_fees"]').attr("checked", false);
$('input:checkbox[id="is_include_fees"]').prop('checked', false);
You can change the attribute, and that will also change the property, if the element is untouched. Once the element leaves this initial state, changing the attribute no longer affects the property. The exact behavior probably varies between browsers.
Instead of .attr('checked', 'cheked') use .prop('checked', true)
'Web Develop > Front-End' 카테고리의 다른 글
Android Webview - input에서 엔터키 입력 감지 안될 때 (0) | 2022.10.12 |
---|---|
CSS 선택자 우선순위 (0) | 2021.08.22 |
자바스크립트 - 문서 객체 모델(Document Object Model) (0) | 2017.03.29 |