我需要克隆該id,然後像id1,id2等那樣添加一個數字。每次擊中克隆時,都會將該克隆放在最後一個ID後面。如何JQuery克隆()和更改ID
$("button").click(function(){
$("#id").clone().after("#id");
});
我需要克隆該id,然後像id1,id2等那樣添加一個數字。每次擊中克隆時,都會將該克隆放在最後一個ID後面。如何JQuery克隆()和更改ID
$("button").click(function(){
$("#id").clone().after("#id");
});
$('#cloneDiv').click(function(){
// get the last DIV which ID starts with ^= "klon"
var $div = $('div[id^="klon"]:last');
// Read the Number from that DIV's ID (i.e: 3 from "klon3")
// And increment that number by 1
var num = parseInt($div.prop("id").match(/\d+/g), 10) +1;
// Clone it and assign the new ID (i.e: from num 4 to ID "klon4")
var $klon = $div.clone().prop('id', 'klon'+num);
// Finally insert $klon wherever you want
$div.after($klon.text('klon'+num));
});
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<button id="cloneDiv">CLICK TO CLONE</button>
<div id="klon1">klon1</div>
<div id="klon2">klon2</div>
更新:作爲Roko C.Bulijan指出..你需要使用.insertAfter選定格後,將其插入。如果您希望將其添加到末尾而不是從克隆多次開始,請參閱更新後的代碼。 DEMO
代碼:
var cloneCount = 1;;
$("button").click(function(){
$('#id')
.clone()
.attr('id', 'id'+ cloneCount++)
.insertAfter('[id^=id]:last')
// ^-- Use '#id' if you want to insert the cloned
// element in the beginning
.text('Cloned ' + (cloneCount-1)); //<--For DEMO
});
嘗試,
$("#id").clone().attr('id', 'id1').after("#id");
如果你想有一個自動計數,然後在下面看到,
var cloneCount = 1;
$("button").click(function(){
$("#id").clone().attr('id', 'id'+ cloneCount++).insertAfter("#id");
});
您錯過了在代碼中使用'id'+ ++ id'的絕好機會。 – Blazemonger 2012-04-12 15:19:10
請你提供一個工作演示嗎? http://jsfiddle.net/HGtmR/ – 2012-04-12 15:59:57
@ RokoC.Buljan你是對的,但問題是如何改變克隆元素的屬性,所以我錯過了注意'.after'。查看更新的答案。 – 2012-04-12 16:09:17
我創建了一個通用的解決方案。下面的函數將更改克隆對象的ID和名稱。在大多數情況下,您需要行號,因此只需將「data-row-id」屬性添加到對象。
function renameCloneIdsAndNames(objClone) {
if(!objClone.attr('data-row-id')) {
console.error('Cloned object must have \'data-row-id\' attribute.');
}
if(objClone.attr('id')) {
objClone.attr('id', objClone.attr('id').replace(/\d+$/, function(strId) { return parseInt(strId) + 1; }));
}
objClone.attr('data-row-id', objClone.attr('data-row-id').replace(/\d+$/, function(strId) { return parseInt(strId) + 1; }));
objClone.find('[id]').each(function() {
var strNewId = $(this).attr('id').replace(/\d+$/, function(strId) { return parseInt(strId) + 1; });
$(this).attr('id', strNewId);
if($(this).attr('name')) {
var strNewName = $(this).attr('name').replace(/\[\d+\]/g, function(strName) {
strName = strName.replace(/[\[\]']+/g, '');
var intNumber = parseInt(strName) + 1;
return '[' + intNumber + ']'
});
$(this).attr('name', strNewName);
}
});
return objClone;
}
+1工作演示:)並感謝您查看我的答案。我已更新的帖子還添加了一個工作演示http://jsfiddle.net/HGtmR/4/ – 2012-04-12 16:14:21
是否有可能在div中刪除當前ID的div的按鈕? – user1324780 2012-04-12 17:13:46
@ user1324780是的,這是可能的,但你應該發佈一個新的問題。無論如何,線索是找到'.closest(div [id^= id])'和'.remove' div。 – 2012-04-12 17:15:22