只有我发现以下代码本质上是向后的吗?
我使用这篇文章作为参考。
// create the inner div
var $inner = $("<div>inner</div>")
// append it to a new outer div
.appendTo("<div>outer</div>")
// 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();
我最初的方法是抓住body,然后将外部附加到主体,然后将内部附加到外部。
向后接近它,然后用类似的东西在层次结构中跳跃,这parent ()
让我有点好奇......