我已經申請單,我需要用克隆按鈕克隆和刪除按鈕,刪除該克隆只有我做了這個簡單的腳本提交 但我相信它包含一些錯誤的,因爲它的不工作:)jQuery的克隆形式的單場和增量ID
HTML
<form method="post">
<div id="fileds">
<select name="lang" id='lang'>
<option>select language</option>
</select>
</div>
</form>
<div class="actions">
<button class="clone">Clone</button>
<button class="remove">Remove</button>
</div>
JS
$(function(){
var regex = /^(.*)(\d)+$/i;
var cloneIndex = $("#lang").length;
$("button.clone").live("click", function(){
$(this).parents("#lang").clone()
.appendTo(".fileds")
.attr("id", "lang" + cloneIndex)
.find("*").each(function() {
var id = this.id || "";
var match = id.match(regex) || [];
if (match.length == 3) {
this.id = match[1] + (cloneIndex);
}
});
cloneIndex++;
});
});
我還沒有找到如何編寫刪除代碼刪除按鈕
謝謝
'#lang'不'.clone'按鈕 – Dips 2012-07-06 04:11:39