を交換する必要が働いていない各機能は、私は、このHTMLjQueryの各属性
<form method="POST" action="" id="order" class="forms">
<div>
<span class="col1">Ref.</span>
<span class="col2">Number</span>
<span class="col3">Color</span>
<span class="col4">Remarks</span>
<span class="col5">Prijs</span>
</div>
<div class="order">
<input type="text" name="ref-1" class="col1" />
<input type="text" name="num-1" class="col2" />
<input type="text" name="color-1" class="col3" />
<input type="text" name="remark-1" class="col4" />
<input type="text" name="price-1" class="col5" />
</div>
<a id="add" href="#">+</a>
</form>
そして、このjqueryの
$("#add").click(function() {
$("#order").children(":eq(1)").clone().each(function() {
var index = $("#order").children().length - 1;
alert(index);
$(this).children().find(":input").each(function() {
alert(index);
$(this).attr("[name]", function(i, v) {
return v.substr(0, v.lastIndexOf("-") + 1) + index;
}).val("");
});
}).insertBefore("#add");
});
を持っている私は、インクリメントされた値にそれぞれ入力された名前の-1部品を交換する必要があります。 しかしJS $(this).attr()
機能 私はこのコードを実行すると、私は#add
これは私の問題を解決しませんでしたが、あなたは正しいです。 – as3student
@ as3student、解決策を使った答えを更新しました。 –
これを私のhtmlでテストしましたか? 2番目のアラートが表示されるため、クローンした要素は追加されません。それは本当に奇妙だ – as3student