欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery常用案例

程序员文章站 2022-07-06 07:59:37
...

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

 

<img class="imageItem" src="${unit.photoLink}" alt=""/>
<div class="choice">
     <input type="checkbox" class="checkItem"  name="checkbox1" value="${unit.id}"  />
      <input type="hidden" class="posterUid" value="${unit.posterUid}">
</div>

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

js实现代码如下:

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

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

 

相关标签: jQuery