如何使用jQuery clone()和更改ID?


127

我需要克隆的ID,然后添加一个数字后,像现在这样id1id2等每次你打你把克隆的最新数的ID后,克隆。

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

Answers:


209

$('#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但混乱的元素(不按顺序排列)。在这里我们不能寻求: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 2012年

1
完全符合我的需求。它最有可能节省了我的开发时间!谢谢
Nicolas Manzini 2015年

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 2012年

:) +1将其四舍五入!;)[id^=id]:last恭喜使用。
Roko C. Buljan 2012年

也可以将其应用于名称吗?
Optiq


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>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.