Created
October 18, 2013 02:15
-
-
Save springcome/7035487 to your computer and use it in GitHub Desktop.
.change, jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select id="selectId"> | |
<option value="1">1</option> | |
<option value="2">2</option> | |
<option value="3">3</option> | |
</select> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// selected하는 항목이 변경될 경우 발생하는 이벤트이다. | |
// input, textarea, select, radio..등 요소가 변경될때 사용가능하다. | |
$('#selectId').change(function(){ | |
console.log($(this).val()); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment