我正在尝试使用 JavaScript 制作一个单选按钮。使用HTML很容易,即到目前为止,使用JS,我能够创建,但我不知道如何为它创建文本节点。另外,我想在正文的第三个div元素中附加此表单,那么它应该是DOM导航吗?这是我的代码:<input type="radio" name="sType" value="m">MALE<input type="radio" name="sType" value="m">MALEid='user_input'
document.getElementsById('user_input').childNodes[0].appendChild(f);
var f = document.createElement("form");
f.setAttribute("id", "myForm");
f.setAttribute('method',"post");
f.setAttribute('action',"ride_test.php");
var radio1 = document.createElement("input"); //input element, text
radio1.setAttribute("id","radio1");
radio1.setAttribute('type',"radio");
radio1.setAttribute('name',"sType");
radio1.setAttribute('value',"m");
f.appendChild(radio1);
青春有我
慕尼黑5688855
相关分类