js 动态添加 radio

js 动态添加 radio,第1张

var radio=document.createElement('input')

radio.type="radio"

radio.name="radio1"

radio.value="学生"

radio.checked="checked"

document.body.appendChild(radio)

var radio=document.createElement('input') radio.type="radio" radio.name="radio1" radio.value="学生" radio.checked="checked" document.body.appendChild(radio)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7933402.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存