admin管理员组文章数量:1394228
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.
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.
Share Improve this question edited Jul 22, 2009 at 2:00 Shog9 160k36 gold badges235 silver badges240 bronze badges asked Jul 22, 2009 at 1:56 Sam SaffronSam Saffron 131k81 gold badges333 silver badges511 bronze badges2 Answers
Reset to default 9You can do
var current = $('<p>hello</p>').appendTo('#elem');
Is this what you mean?
var current = $("#elem").append("<p>hello</p>").children(':last');
本文标签: javascriptHow can I get a reference to a node directly after it is appendedStack Overflow
版权声明:本文标题:javascript - How can I get a reference to a node directly after it is appended? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744682677a2619507.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论