gpt4 book ai didi

php - 使用 jquery 从 span 获取所有 html

转载 作者:太空宇宙 更新时间:2023-11-04 15:12:25 34 4
gpt4 key购买 nike

<span class="get" attr-one="1" attr-two="2">text1</span>
<span class="get" attr-one="21" attr-two="2">text2</span>
<span class="get" attr-one="31" attr-four="2">text3</span>
<span class="get" attr-one="4" attr-three="2">tex4t</span>
<span class="get" attr-one="15" attr-five="2">text5</span>

<div id="container" style="width: 200px; height: 200px; background-color: red"></div>

$('.get').click(function(){
$('#container').append($(this).html());
})

如何使用 HTML 将当前对象添加到其他容器?在我的示例中,这仅从我的跨度中获取内容。我想获得带有属性等的所有跨度。

jsfiddle

最佳答案

$('.get').click(function(){
$('#container').append($(this).clone());// to append html like with span now it will copy

})

$('.get').click(function(){
$('#container').append($(this));// to append span now it will move

})

参见 demo

关于php - 使用 jquery 从 span 获取所有 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18401352/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com