Skip to content

Instantly share code, notes, and snippets.

@284km
Created February 16, 2014 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 284km/9030825 to your computer and use it in GitHub Desktop.
Save 284km/9030825 to your computer and use it in GitHub Desktop.
radio button を非活性にする
<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