일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- paramiko
- C
- pytorch
- label
- mysql
- OpenCV
- windows forms
- Python
- 오류
- VS Code
- 핑거스타일
- 명령어
- LIST
- pip
- Linux
- Docker
- C++
- Selenium
- ubuntu
- Visual Studio
- YOLO
- JSON
- error
- pandas
- 프로그래머스
- 채보
- C#
- SSH
- Numpy
- 기타 연주
- Today
- Total
목록Web/JS (4)
기계는 거짓말하지 않는다
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..
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..
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 확인
JavaScript id 또는 name 으로 얻기 var element = document.getElementById("id");// get element by id var nameElement = document.getElementsByName("name")[0];// get elements by name name은 중복이 가능하고 id는 unique 하기 때문에 name은 getElements 로 복수이다. 인덱스가 붙는것을 확인. JQuery var element = $("#button");// get element by id var nameElement = $("tag[name='tagName']")[0];// get elements by name // tag에는 선언한 tag가 들어가야 한다. ..