jQuery prev()和next()

时间:2011-02-23 03:39:38

标签: jquery

我正在使用jQuery。我有HTML代码,如下所示:

<ul>
    <li>123</li>
    <li id="hello">456</li>
</ul>
<ul>
    <li>789</li>
</ul>

我想用jQuery在#hello(789元素)之后获取li元素。我尝试使用$('#hello').next(),但它不起作用。

我该怎么办?

2 个答案:

答案 0 :(得分:1)

$('#hello').parent().next().children();

答案 1 :(得分:1)

尝试类似

的内容
$('#hello').parent().next().children().eq(0)

http://api.jquery.com/category/traversing/tree-traversal/可能有用