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 검색

ID가 klon--5같지만 스크램블 된 (순서가 아님) 많은 요소가 있다고 가정 해 보겠습니다 . 여기서는 또는 로 갈 수 없으므로 가장 높은 ID를 검색하는 메커니즘이 필요합니다.:last:first

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 for Working demo :) 내 대답을 찾아 주셔서 감사합니다. 나는 포스트는 데모 작업 추가 업데이트 한 jsfiddle.net/HGtmR/4
Selvakumar Arumugam

현재 ID div를 제거하는 div 안에 버튼이있을 수도 있습니까?
user1324780

1
@ user1324780 예, 가능하지만 새 질문으로 게시해야합니다. 어쨌든 단서는 찾을 수 있습니다 .closest(div[id^=id]).remove그 DIV를.
Selvakumar Arumugam

1
내 필요에 완벽하게 맞습니다. 개발 시간을 절약 할 수있었습니다! 감사
니콜라스 만지니

43

업데이트 :로코 C.Bulijan은 선택한 DIV 후를 삽입 .insertAfter를 사용할 필요가 .. 지적했다. 또한 여러 번 복제 할 때 시작하는 대신 끝에 추가하려면 업데이트 된 코드를 참조하십시오. 데모

암호:

   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 당신 말이 맞지만, 복제 된 요소의 속성을 변경하는 방법이 문제 였기 때문에 .after. 업데이트 된 답변을 참조하십시오.
Selvakumar Arumugam

:) +1은 5로 반올림합니다! ;) [id^=id]:last축하합니다.
Roko C. Buljan 2012

이름에도 적용될 수 있습니까?
Optiq 2015 년

5

이것은 나를 위해 일하는 가장 간단한 솔루션입니다.

$('#your_modal_id').clone().prop("id", "new_modal_id").appendTo("target_container");

2

일반화 된 솔루션을 만들었습니다. 아래 함수는 복제 된 개체의 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;
}

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.