搜尋

首頁  >  問答  >  主體

javascript - 動態產生radio,name互相衝突

<button>添加ROW</button>
<table>
    <tr>
        <td>
            <input type="radio" name="HasFlower" class="yes">是
            <input type="radio" name="HasFlower" class="no">否
        </td>
    </tr>
</table>

<script>
$("button").click(function(){
    var chtml=$("table").children().clone(true);
    $(this).after(chtml);

    var nRow=$(this).siblings('tbody');
    for(var i=0;i<nRow.length;i++){
        nRow[i].setAttribute("data-myid",i+1);
        nRow.children("tr").find("input[class='yes']")[i].setAttribute("name","HasFlower"+i);
        nRow.children("tr").find("input[class='no']")[i].setAttribute("name","HasFlower"+i);
    };
});
</script>

點選產生新的table,同時為radio動態改變name,但不同的name卻互相衝突,如name=HasFlower1和name=HasFlower2無法同時選中,這是為什麼?

阿神阿神2733 天前925

全部回覆(1)我來回復

  • 过去多啦不再A梦

    过去多啦不再A梦2017-07-05 11:05:42

    回覆
    0
  • 取消回覆