另外我想用JS控制 点击单选前面的文字 来选择按钮 PS:不是要用label,是用JS
有label不用干么用article来实现,不是找麻烦?
自己添加onclick事件,点击后设置onclick为null
<article onclick="this.firstChild.checked=true;this.onclick=null"><input type="radio"/>click me</article>