jsp 페이지에서 select 선택 상자의 값을 가져오는 두 가지 방법

1506 단어 프런트 엔드

먼저 value 값을 가져오는 두 가지 방법:
var type = document.getElementById("select").value;
var type = $('#select option:selected') .val();

선택 상자의 내용을 가져오는 방법은 다음과 같습니다.
var type = $("#select").find("option:selected").text();
var type = $('#select option:selected').text();

좋은 웹페이지 즐겨찾기