요소객체 DOM 속성을 반환,설정
elem.checked | true (Boolean) Will change with checkbox state |
---|---|
$(elem).prop("checked") | true (Boolean) Will change with checkbox state |
elem.getAttribute("checked") | "checked" (String) Initial state of the checkbox; does not change |
$(elem).attr("checked") (1.6) | "checked" (String) Initial state of the checkbox; does not change |
$(elem).attr("checked") (1.6.1+) | "checked" (String) Will change with checkbox state |
$(elem).attr("checked") (pre-1.6) | true (Boolean) Changed with checkbox state |
'Javascript' 카테고리의 다른 글
Iframe 편집모드 활성화 (0) | 2016.06.14 |
---|---|
표준 커스텀 어트리뷰트 접근 및 제어 (0) | 2013.05.16 |
jQuery Right-Click Plugin - 마우스 우클릭 이벤트 (0) | 2011.11.30 |
즐겨찾기를 이용한 DOM 구조 파악 (0) | 2011.05.03 |
체인 (Chain) (0) | 2011.05.03 |