如何使用 jquery 获取前面的 div 元素的类名?

发布于 2024-11-16 11:43:34 字数 294 浏览 0 评论 0原文

我正在开发一种新设计,我需要获取另一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

韵柒 2024-11-23 11:43:34

您可以使用 .prev 来实现此目的 - http://api.jquery.com/prev/

$('div.the').prev().attr('class');

You can use .prev for this - http://api.jquery.com/prev/

$('div.the').prev().attr('class');
千と千尋 2024-11-23 11:43:34

从前一个元素中获取类:

$(this).prev().attr("class");

Grab the class from the previous element:

$(this).prev().attr("class");
心碎的声音 2024-11-23 11:43:34
$(this).addClass($(this).prev('div').attr('class'));
$(this).addClass($(this).prev('div').attr('class'));
清晨说晚安 2024-11-23 11:43:34
<div class="div1"></div>
<div class="div2"></div>

var prevDivClass = $('.div2').prev().attr('class'));
<div class="div1"></div>
<div class="div2"></div>

var prevDivClass = $('.div2').prev().attr('class'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文