checkbox
-
getElementsByName 체크박스 라디오버튼 컨트롤 하기Programming/javascript 2020. 6. 12. 00:20
getElementsByName 은 docuemnt 의 name 에 접근할 수 있는 method 입니다. 사용방법 var elements = document.getElementsByName(name); elements 은 nodeList 객체의 collection 입니다. 라디오버튼 (radio button) 예제입니다. 그린 블루 레드 블랙 4개의 colors 라는 name 을 갖는 라디오버튼이 있습니다. var ele = document.getElementsByName('colors'); // colors 이름을 가지는 엘리먼트를 가져온다. var count = ele.length; // 라디오버튼 길이 console.log('라디오버튼 갯수 ', count); // "라디오버튼 갯수 ", 4 출력 ..