javascript - jquery有什么方法可以复制自己和所有子元素。
習慣沉默
習慣沉默 2017-06-05 11:12:54
[HTML讨论组]

我想复制li标签本身包括所有子元素到第一个li标签前面,jquery有简单的写法。

var swiperPic = $(".swiper-slide")
var liHtml = swiperPic.eq(swiperPic.length - 1).html()
swiperPic.eq(0).before("
  • " + liHtml +"
  • ")
  • 我想到的是能复制li标签下所有子元素但是不包括li标签本身。

    習慣沉默
    習慣沉默

    全部回复(6)
    高洛峰

    试试.clone().find(">*")

    高洛峰

    $(selector).children(selector)用于返回匹配元素集合中每个元素的子元素。

    滿天的星座

    直接clone整个$('.swiper-slide')不就行了么

    给我你的怀抱
    var swiperPic = $(".swiper-slide");
    swiperPic.eq(0).before(wiperPic.eq(swiperPic.length - 1).children().clone());
    怪我咯

    原生的js用element.cloneNode(true)就可以了

    ringa_lee

    .clone

    热门教程
    更多>
    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
    php中文网:公益在线php培训,帮助PHP学习者快速成长!
    关注服务号 技术交流群
    PHP中文网订阅号
    每天精选资源文章推送
    PHP中文网APP
    随时随地碎片化学习

    Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号