상세 컨텐츠

본문 제목

select 값 가져오기 (jquery)

JavaScript & HTML

by husks 2015. 6. 29. 09:40

본문

반응형


html의 select 값을 가져오는 예제를 작성해 보겠습니다.



<html>
    <head>
        <title>Test</title>
        <script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
			
				$(document).on("change","select[name=books]",function(){
					var bookId = $("select[name=books] option:selected").val();
					var bookText = $("select[name=books] option:selected").text();
					alert(bookId+" : "+bookText);
				});
                  
            });
        </script>
    </head>
      
    <body>
        <select name="books">
			<option value="">선택</option>
			<option value="A1">홍길동전</option>
			<option value="B1">레미제라블</option>
		</select>
    </body>
</html>



반응형

관련글 더보기

댓글 영역