Como jQuery clone () e alterar id?


127

Eu preciso para clonar o ID e, em seguida, adicionar um número após ele gosta assim id1, id2, etc. Toda vez que você acertar clone você colocar o clone após o último número do id.

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

Respostas:


210

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


Elementos mexidos, recuperar o ID mais alto

Digamos que você tenha muitos elementos com códigos semelhantes, klon--5mas codificados (não em ordem). Aqui não podemos procurar :lastou :first, portanto, precisamos de um mecanismo para recuperar o ID mais alto:

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 na demonstração de trabalho :) e obrigado por analisar minha resposta. Eu atualizei o post também acrescentou um trabalho de demonstração jsfiddle.net/HGtmR/4
Selvakumar Arumugam

também é possível ter um botão dentro da div que remova a div atual do id?
usar o seguinte comando

1
@ user1324780 Sim, é possível, mas você deve publicá-la como uma nova pergunta. De qualquer forma, a pista é encontrar o .closest(div[id^=id])e .removeesse div.
Selvakumar Arumugam 12/04/12

1
se encaixam perfeitamente na minha necessidade. Isso me salvou horas de desenvolvimento provavelmente! obrigado
Nicolas Manzini

43

Atualização: como Roko C.Bulijan apontou .. você precisa usar .insertAfter para inseri-lo após a div selecionada. Consulte também o código atualizado se você quiser que ele seja anexado ao final, em vez de começar quando clonado várias vezes. DEMO

Código:

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

Experimentar,

$("#id").clone().attr('id', 'id1').after("#id");

Se você deseja um contador automático, veja abaixo,

   var cloneCount = 1;
   $("button").click(function(){
      $("#id").clone().attr('id', 'id'+ cloneCount++).insertAfter("#id");
   }); 

18
Você perdeu uma grande oportunidade de usar 'id'+ ++ idem seu código.
Blazemonger

@ RokoC.Buljan Você está certo, mas a questão era como alterar o atr do elemento clonado e, por isso, senti falta do aviso .after. Veja a resposta atualizada.
Selvakumar Arumugam 12/04/12

:) +1 para arredondar para 5! ;) bom uso de [id^=id]:lastParabéns.
Roko C. Buljan

isso também pode ser aplicado aos nomes?
Optiq 27/08/2015

5

Esta é a solução mais simples para mim.

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

2

Eu criei uma solução generalizada. A função abaixo mudará os IDs e nomes dos objetos clonados. Na maioria dos casos, você precisará do número da linha, portanto, basta adicionar o atributo "data-row-id" ao objeto.

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

Isso funciona também

 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>
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.