crosscheck
홈
태그
방명록
Programing
현재 선택된 것을 어떻게 얻습니까?
crosscheck
2021. 1. 6. 20:17
반응형
현재 선택된 것을 어떻게 얻습니까?
안에
via JavaScript? How do you get the currently selected <option> of a <select> element via JavaScript? This will do it for you: var yourSelect = document.getElementById( "your-select-id" ); alert( yourSelect.options[ yourSelect.selectedIndex ].value ) The .selectedIndex of the select object has an index; you can use that to index into the .options array. var payeeCountry = document.getElementById( "payeeCountry" ); alert( payeeCountry.options[ yourSelect.selectedIndex ].value ); Using the selectedOptions property: var yourSelect = document.getElementById("your-select-id"); alert(yourSelect.selectedOptions[0].value); It works in all browsers except Internet Explorer. ReferenceURL : https://stackoverflow.com/questions/3301688/how-do-you-get-the-currently-selected-option-in-a-select-via-javascript
반응형
공유하기
게시글 관리
crosscheck
'
Programing
' 카테고리의 다른 글
웹 주소가 인쇄되지 않도록 내 인쇄 CSS에서 URL을 제거 할 수 있습니까?
(0)
2021.01.06
VB.NET : ComboBox에서 사용자 입력을 방지하는 방법
(0)
2021.01.06
ThreadLocals를 정리하는 방법
(0)
2021.01.06
Eclipse Java 실행 구성 파일 경로
(0)
2021.01.06
Python : __init__ 수퍼 클래스 상속
(0)
2021.01.06
티스토리툴바