Jquery从插入的HTML片段中获取id

时间:2011-04-22 07:13:48

标签: jquery

我正在通过.get插入一段HTML,插入时使用新的HTML(使用.append)将有一个<li>元素,其中包含我需要的id属性。有没有获得对最后一个插入元素的引用的任何方法,并从那里查询?有什么好主意吗?

2 个答案:

答案 0 :(得分:1)

$(yourhtml).find('li:last').attr('id');

答案 1 :(得分:1)

您还可以使用:nth-​​child选择器。

$("li:nth-child(3)").attr('id'); //selects the third, as an example

http://api.jquery.com/nth-child-selector/