我正在通过.get插入一段HTML,插入时使用新的HTML(使用.append)将有一个<li>
元素,其中包含我需要的id属性。有没有获得对最后一个插入元素的引用的任何方法,并从那里查询?有什么好主意吗?
答案 0 :(得分:1)
$(yourhtml).find('li:last').attr('id');
答案 1 :(得分:1)
您还可以使用:nth-child选择器。
$("li:nth-child(3)").attr('id'); //selects the third, as an example