当前位置:  开发笔记 > 编程语言 > 正文

jQuery是否采用了向后方法进行方法链接?

如何解决《jQuery是否采用了向后方法进行方法链接?》经验,为你挑选了1个好方法。

只是我发现下面的代码本质上是倒退的吗?

我正在使用此帖子作为参考.

// create the inner div
var $inner = $("
inner
") // append it to a new outer div .appendTo("
outer
") // next change the jQuery chain to the "outer" div .parent() // append the outer div to the body .appendTo("body") // finally, go back to the last destructive command, // giving us back a pointer to the "inner" div .end();

我最初的方法是抓住身体,然后在身体外面附上一个外层,然后在内部附加一个内部.

接近它然后跳过层次结构,parent ()只是让我觉得有点好奇......



1> MDCore..:

你也可以用另一种方式做到这一点:

$('body').append('
outer
').append('
inner
');

但这会让你离开 body

最终inner你需要:

$('body').append('
outer
').append('
inner
') .find('div:contains(inner)');

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有