如何使用 jquery 获取前面的 div 元素的类名?
我正在开发一种新设计,我需要获取另一个 div 元素上方的 div 元素的类名称。
像这样:
<div class="random name a"></div>
<div class="the name of this class depends on the name of the class above this div"></div>
有没有办法用 jQuery 知道这一点?我环顾四周,但还没有找到任何线索。
多谢!
I am developing a new design for which I need to get the name of the class of a div element above another div element.
Like this:
<div class="random name a"></div>
<div class="the name of this class depends on the name of the class above this div"></div>
Is there any way of knowing this with jQuery? I been looking around but couldn't find any clue yet.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 .prev 来实现此目的 - http://api.jquery.com/prev/
You can use .prev for this - http://api.jquery.com/prev/
从前一个元素中获取类:
Grab the class from the previous element: