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
- ubuntu
- YOLO
- Selenium
- Docker
- error
- 프로그래머스
- pandas
- nvidia-smi
- label
- SSH
- Linux
- OpenCV
- Numpy
- Visual Studio
- C
- VS Code
- pytorch
- 컨테이너
- C#
- windows forms
- 기타 연주
- 핑거스타일
- pip
- 오류
- 채보
- paramiko
- JSON
- C++
- mysql
- Python
Archives
- Today
- Total
목록값 변경 (1)
기계는 거짓말하지 않는다

JavaScript var radio = document.getElementById("radio1");// get element by id alert(radio.value);// value 가져오기 alert(radio.id);// id 가져오기 alert(radio.name);// name 가져오기 radio = document.getElementsByName("myRadio");// get elements by name alert(radio.length);// radio 개수 alert(radio[0].value);// radio 첫번째 value alert(radio[0].id);// radio 첫번째 id alert(radio[0].name);// radio 첫번째 name radio[4].che..
Web/JS
2020. 12. 3. 17:52