jquery clone div并在特定div之后追加它

时间:2012-01-03 04:00:33

标签: jquery clone

enter image description here

大家好,从上面的图片来看,我想克隆id为#car2的div并将其追加到id为car start的最后一个div之后,在本例中为id#car5。我怎么能这样做? 感谢。

这是我的尝试代码:

$("div[id^='car']:last").after('put the clone div here');

4 个答案:

答案 0 :(得分:126)

你可以使用clone,然后因为每个div都有一个car_well类,你可以使用insertAfter在最后一个div之后插入。

$("#car2").clone().insertAfter("div.car_well:last");

答案 1 :(得分:12)

试试这个

$("div[id^='car']:last").after($('#car2').clone());

答案 2 :(得分:1)

您可以使用jQuery的clone()函数来完成此操作,可以接受的答案是可以的,但是我提供了替代方法,您可以使用append(),但只有在您可以如下略微更改html的情况下,它才有效:

$(document).ready(function(){
    $('#clone_btn').click(function(){
      $("#car_parent").append($("#car2").clone());
    });
});
.car-well{
  border:1px solid #ccc;
  text-align: center;
  margin: 5px;
  padding:3px;
  font-weight:bold;
}
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div id="car_parent">
  <div id="car1" class="car-well">Normal div</div>
  <div id="car2" class="car-well" style="background-color:lightpink;color:blue">Clone div</div>
  <div id="car3" class="car-well">Normal div</div>
  <div id="car4" class="car-well">Normal div</div>
  <div id="car5" class="car-well">Normal div</div>
</div>
<button type="button" id="clone_btn" class="btn btn-primary">Clone</button>

</body>
</html>

答案 3 :(得分:0)

如果直接复制有序,这很有用。如果情况要求从模板创建新对象,我通常将模板div包装在一个隐藏的存储div中,并使用jquery的html()和clone()应用以下技术:

<style>
#element-storage {
    display: none;
    top: 0;
    right: 0;
    position: fixed;
    width: 0;
    height: 0;
}
</style>

<script>
$("#new-div").append($("#template").clone().html(function(index, oldHTML){ 
    // .. code to modify template, e.g. below:
    var newHTML = "";
    newHTML = oldHTML.replace("[firstname]", "Tom");
    newHTML = newHTML.replace("[lastname]", "Smith");
    // newHTML = newHTML.replace(/[Example Replace String]/g, "Replacement"); // regex for global replace
    return newHTML;
}));
</script>

<div id="element-storage">
  <div id="template">
    <p>Hello [firstname] [lastname]</p>
  </div>
</div>

<div id="new-div">

</div>