jQuery clone()とIDの変更方法は?


127

IDのクローンを作成し、その後id1id2、などのように番号を追加する必要があります。クローンを押すたびに、IDの最新の番号の後にクローンを配置します。

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

回答:


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>


スクランブル要素、最高の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作業デモ:)と私の答えを見ていただきありがとうございます。私は投稿を更新し、動作するデモjsfiddle.net/HGtmR/4
Selvakumar Arumugam

現在のID divを削除するボタンをdiv内に含めることも可能ですか?
user1324780

1
@ user1324780はい、可能ですが、新しい質問として投稿してください。とにかく手がかりは見つけることです.closest(div[id^=id])し、.removeそのdiv要素を。
Selvakumar Arumugam

1
私のニーズに完全に適合します。おそらく、開発に何時間も節約できました。感謝
Nicolas Manzini

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 2012

@ RokoC.Buljanその通りですが、問題はクローンされた要素のattrを変更する方法でしたので、に気づきませんでした.after。更新された回答を参照してください。
Selvakumar Arumugam

:) +1して5に丸めます!;)[id^=id]:lastおめでとうございます。
ロコC.ブルジャン

これは名前にも適用できますか?
Optiq 2015


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.