Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- C
- windows forms
- error
- 명령어
- C++
- Linux
- label
- 핑거스타일
- 프로그래머스
- LIST
- OpenCV
- SSH
- 채보
- pytorch
- pandas
- pip
- Docker
- ubuntu
- 오류
- mysql
- JSON
- C#
- Visual Studio
- YOLO
- Selenium
- Python
- Numpy
- paramiko
- 기타 연주
- VS Code
Archives
- Today
- Total
목록option (1)
기계는 거짓말하지 않는다
select option 선택, 값 control
JavaScript var selectBox = document.getElementById("selectID");// id로 object 얻기 alert(selectBox.options.length);// option 개수 alert(selectBox.selectedIndex);// 선택된 option index alert(selectBox.options[selectBox.selectedIndex].id);// 선택된 option id alert(selectBox.options[selectBox.selectedIndex].value);// 선택된 option value alert(selectBox.options[selectBox.selectedIndex].text);// 선택된 option text se..
Web/JS
2020. 12. 3. 00:08