[新着] Webテンプレートを仮オープンしました
<input type = "radio" value="0" name = "group1" ></input> <input type = "radio" value="1" name = "group1" ></input>
var oParent = document.getElementsByTagName("BODY").item(0) ;
var oTest = document.createElement("INPUT");
oTest.type = "radio" ;
oTest.name = "group1" ;
oTest.value= "0" ;
oTest.checked = "true" ;
oParent.appendChild(oTest);
var oTest1 = document.createElement("INPUT");
oTest1.type = "radio" ;
oTest1.name = "group1" ;
oTest1.value= "1" ;
oParent.appendChild(oTest1); var input = document.createElement("<input type='radio' name='group1'>");
var input2 = document.createElement("<input type='radio' name='group1'>");
document.body.appendChild(input);
document.body.appendChild(input2);