<input type=radio id=ra><span onclick="document.all('ra').checked=true">aaaa</span>

解决方案 »

  1.   

    也会呀
    (不要忘了radio的name, radio和checkbox不同的是他要求“组”)
    <input type=checkbox id="oIDc1"><label for="oIDc1">the first</label></input>
    <input type=checkbox id="oIDc2"><label for="oIDc2">the second</label></input><input type=radio checked></input>
    <input type=radio id="oIDr0"></input>
    <br/>
    <input type=radio name="radio1" id="oIDr1"><label for="oIDr1">the first</label></input>
    <input type=radio name="radio1" id="oIDr2"><label for="oIDr2">the second</label></input>
    <input type=radio name="radio1" id="oIDr3"><label for="oIDr3">the first</label></input>Label的特性是:If the user clicks the label, the onclick event goes to the label and then bubbles to the control specified by the htmlFor property. Pressing the access key for the label is the same as clicking the label.
      

  2.   

    谢谢 骆驼!
    真的是需要一个name,我昨天写的时候只有id.....