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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…