简体   繁体   中英

How can I get a reference to a node directly after it is appended?

I have a situation where I'm appending a node inside an element and would like a reference to it right away.

At the moment I do something along these lines:

var children = $("#elem").append("<p>hello</p>").children();
var current = children[children.length -1]

Can this be done more cleanly with jQuery?

I know, I can write a helper function, but was wondering if there is something built in.

你可以做

var current = $('<p>hello</p>').appendTo('#elem');

你是这个意思吗?

var current = $("#elem").append("<p>hello</p>").children(':last');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM