gpt4 book ai didi

javascript - 提取没有特定 child 的 body 元素

转载 作者:行者123 更新时间:2023-11-30 11:59:02 25 4
gpt4 key购买 nike

有没有办法在没有特定子元素的情况下提取主体元素?

例如,如果我有:

<body>
<div id="id1" class="class1" />
<div id="id2" class="class2" />
</body>

,我需要提取的是:

<body>
<div id="id1" class="class1" />
</body>

其实我打算用html2canvas从 HTML 代码制作 canvas 元素的库,但我不想在 canvas 元素中包含所有 body 子元素。

最佳答案

如果您检索父元素,那么您还必须获取其所有子元素。在这种情况下,一种可能的解决方法是选择 body,克隆它,然后删除不需要的子元素,如下所示:

var $bodyClone = $('body').clone();
$bodyClone.find('#id2').remove();
// use $bodyClone as needed here...

关于javascript - 提取没有特定 child 的 body 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37135471/

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