Created
February 16, 2014 07:48
-
-
Save 284km/9030825 to your computer and use it in GitHub Desktop.
radio button を非活性にする
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="disableme" id=1> Animal | |
<input type="radio" name="disableme" id=2> Mammal | |
<input type="radio" name="disableme" id=3> Human | |
var radios = document.formName.disableme; | |
for (var i=0, iLen=radios.length; i<iLen; i++) { | |
radios[i].disabled = true; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment