Created
October 18, 2013 02:11
-
-
Save springcome/7035452 to your computer and use it in GitHub Desktop.
radio, 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
<input type="radio" name="rdo" value="1">1번 | |
<input type="radio" name="rdo" value="2">2번 | |
<input type="radio" name="rdo" value="3">3번 |
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
// checked된 값을 알고자 할때 | |
$(':input:radio[name=rdo]:checked').val(); | |
// checked된 text를 알고자 할때 | |
$(':input:radio[name=rdo]:checked').text(); | |
// value로 checked하고자 할때 | |
$(':input:radio[name=rdo][value=1]').attr('checked', true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment