gpt4 book ai didi

jquery - ReplaceWith() 不删除原始元素

转载 作者:行者123 更新时间:2023-12-01 07:29:38 27 4
gpt4 key购买 nike

是否有类似 replaceWith() 的 jQuery 函数,可以用新元素替换元素,而不破坏原始元素(只是隐藏它)。

最佳答案

你可以这样做:

<button>replace</button>
<div class="toReplace">your first content</div >
<div class="toReplace" style="display: none">your second content</div >

然后在js中:

$("button").click(function () {
$("toReplace").toggle();
});

关于jquery - ReplaceWith() 不删除原始元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7179771/

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