jquery常用案例

阅读更多

1.查找下一个兄弟元素的某一个子元素:

 


 即,已知class=imageItem对象,查找的对象是隐藏域class=posterUid;

js实现代码如下:

$(this).next().children().eq(1).val()

 $(this)就是class=imageItem对象。

 

你可能感兴趣的:(jQuery)