gpt4 book ai didi

jQuery 链式跳转?

转载 作者:行者123 更新时间:2023-12-01 06:21:35 26 4
gpt4 key购买 nike

jQuery 几乎是一个大型选择器遍历引擎,上面挂着有用的东西。拥有如此强大的力量,我不敢相信没有办法跳过链条。因此,我假设我对完成此任务的方式一无所知。

我希望能够 fork 一条链以便进行修改,然后返回到根链。

示例:

$('#clone-container')
.clone()
.find('#clone-topic') // fork
.attr('id', 'new-topic')
// return to root chain (how?)
.find('#clone-body') // fork
.attr('id', 'new-body')
.attr('id', 'new-container') // return to root chain (how?)
.append('body');

我希望这至少有一点道理。 :)

如有任何帮助,我们将不胜感激。

谢谢。

最佳答案

使用.end()

Revert the most recent 'destructive' operation, changing the set of matched elements to its previous state (right before the destructive operation).

关于jQuery 链式跳转?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1204738/

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