| 本帖最後由 rayin 於 2011-1-21 16:03 編輯 
 如果可以在同一form中, 有2個radio buttonset??
 <div class="demo">
<form>
    <div id="radio">
        <input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
        <input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
        <input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
    </div>
   </form>
    <form>
    <div id="radio111">
        <input type="radio" id="radio11" name="radio" /><label for="radio11">Choice 11</label>
        <input type="radio" id="radio21" name="radio" checked="checked" /><label for="radio21">Choice 21</label>
        <input type="radio" id="radio31" name="radio" /><label for="radio31">Choice 31</label>
    </div>
</form>
</div>如果是這樣, 是沒有問題的 但當只用一張form包住2個button set便會出問題, 變成6選1
 請求助!!
 |