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
- Numpy
- Python
- Linux
- pip
- 핑거스타일
- pandas
- Docker
- 채보
- Selenium
- 기타 연주
- 프로그래머스
- YOLO
- LIST
- label
- OpenCV
- C#
- error
- JSON
- C++
- Visual Studio
- 컨테이너
- SSH
- paramiko
- mysql
- windows forms
- VS Code
- 오류
- pytorch
- C
Archives
- Today
- Total
목록강제 클릭 (1)
기계는 거짓말하지 않는다
checkbox 확인, 변경, 강제클릭
JavaScript var checkBox = document.getElementById("checkId");// id로 오브젝트 얻기 alert(checkBox.checked);// check 확인 checkBox.checked = true;// check 값 변경 checkBox.click();// 강제 클릭 JQuery var checkBox = $("#checkId");// id로 오브젝트 얻기 alert(checkBox.is(":checked"));// check 확인 checkBox.prop("checked", true);// check 값 변경 checkBox.trigger("click");// 강제 클릭 Test check 확인
Web/JS
2020. 12. 2. 17:52