jQuery clone () และเปลี่ยน id ได้อย่างไร?


127

ฉันจำเป็นต้องใช้ในการโคลน id แล้วเพิ่มหมายเลขหลังจากที่มันชอบดังนั้นid1, id2ฯลฯ ทุกครั้งที่คุณตีโคลนคุณใส่โคลนหลังจากที่ตัวเลขล่าสุดของ id

$("button").click(function() {
    $("#id").clone().after("#id");
}); 

คำตอบ:


211

$('#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>


องค์ประกอบที่มีสัญญาณรบกวนดึง ID สูงสุด

สมมติว่าคุณมีองค์ประกอบหลายอย่างที่มีรหัสเหมือนklon--5แต่มีสัญญาณรบกวน (ไม่เรียงตามลำดับ) ที่นี่เราไม่สามารถไปหา:lastหรือ:firstดังนั้นเราจึงต้องการกลไกในการดึง ID สูงสุด:

const $all = $('[id^="klon--"]');
const maxID = Math.max.apply(Math, $all.map((i, el) => +el.id.match(/\d+$/g)[0]).get());
const nextId = maxID + 1;

console.log(`New ID is: ${nextId}`);
<div id="klon--12">12</div>
<div id="klon--34">34</div>
<div id="klon--8">8</div>

<script src="https://code.jquery.com/jquery-3.1.0.js"></script>


2
+1 สำหรับการสาธิตการทำงาน :) และขอบคุณที่มองหาคำตอบของฉัน ฉันได้อัปเดตโพสต์แล้วยังได้เพิ่มการสาธิตที่ใช้งานได้jsfiddle.net/HGtmR/4
Selvakumar Arumugam

เป็นไปได้ไหมที่จะมีปุ่มใน div ที่ลบ id div ปัจจุบัน
user1324780

1
@ user1324780 ใช่เป็นไปได้ แต่คุณควรโพสต์เป็นคำถามใหม่ อย่างไรก็ตามเบาะแสคือการค้นหา.closest(div[id^=id])และ.removediv นั้น
Selvakumar Arumugam

1
พอดีกับความต้องการของฉัน มันช่วยฉันได้หลายชั่วโมงในการพัฒนาเป็นไปได้มาก! ขอบคุณ
Nicolas Manzini

จะใช้กับ $ (this) ได้อย่างไร ?? มันไม่ทำงาน $ (this). ('div [id ^ = "picker-time-start"]');
user3058963

43

อัปเดต:ตามที่Roko C. Bulijanชี้ให้เห็นว่า .. คุณต้องใช้. insertAfter เพื่อแทรกหลังจาก div ที่เลือก ดูรหัสที่อัปเดตหากคุณต้องการให้ต่อท้ายแทนที่จะเริ่มต้นเมื่อโคลนหลาย ๆ ครั้ง การสาธิต

รหัส:

   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");
   }); 

18
คุณพลาดโอกาสดีๆที่จะใช้'id'+ ++ idในโค้ดของคุณ
Blazemonger

@ RokoC.Buljan คุณพูดถูก แต่คำถามคือจะเปลี่ยน attr ขององค์ประกอบที่ถูกโคลนได้อย่างไรดังนั้นฉันจึงพลาดที่จะสังเกตเห็นไฟล์.after. ดูคำตอบที่อัปเดต
Selvakumar Arumugam

:) +1 เพื่อปัดเศษเป็น 5! ;) [id^=id]:lastขอแสดงความยินดีด้วย
Roko C.Buljan

สามารถนำไปใช้กับชื่อได้หรือไม่?
Optiq


2

ฉันได้สร้างโซลูชันทั่วไป ฟังก์ชันด้านล่างนี้จะเปลี่ยนรหัสและชื่อของวัตถุที่ถูกโคลน ในกรณีส่วนใหญ่คุณจะต้องมีหมายเลขแถวดังนั้นเพียงแค่เพิ่มแอตทริบิวต์ "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;
}

2

นี่ก็ใช้ได้เหมือนกัน

 var i = 1;
 $('button').click(function() {
     $('#red').clone().appendTo('#test').prop('id', 'red' + i);
     i++; 
 });
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<div id="test">
  <button>Clone</button>
  <div class="red" id="red">
  </div>
</div>

<style>
  .red {
    width:20px;
    height:20px;
    background-color: red;
    margin: 10px;
  }
</style>


1
$('#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>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.