获取封闭链接标签的 href 属性

发布于 2024-10-20 22:42:44 字数 309 浏览 2 评论 0原文

在这件事上遇到了一点麻烦。我需要一种使用 Jquery/JS 查找封闭链接标记的 HREF 属性的方法:

<a href="something.html"><img src="img1.jpg" class="active"></a>

我想按类定位 img 并查找第一个前面的 href 属性的值。

$("img.active").somethingAwesome().attr("href");

请告诉我一些很棒的()...帮助?

Having a little trouble on this one. I need a way using Jquery/JS to find the HREF attribute of the enclosing link tag:

<a href="something.html"><img src="img1.jpg" class="active"></a>

I want to target the img by class and find the value of the 1st preceding href attribute.

$("img.active").somethingAwesome().attr("href");

Please show me somethingAwesome() ...help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

旧伤还要旧人安 2024-10-27 22:42:44

$("img.active").parent("a").attr("href") 将获取直接父级的 href 属性(假设它是锚点)。如果图像和锚点之间存在任何深度的包含块,请改用 $("img.active").closest("a").attr("href")

$("img.active").parent("a").attr("href") will get the direct parent's href attribute, assuming it's an anchor. If there's any depth of containing blocks between the image and the anchor, use instead $("img.active").closest("a").attr("href").

荭秂 2024-10-27 22:42:44

.parent() 就是您所需要的!

$("img.active").parent().attr("href");

这里是文档 :)

根据凯尔的评论,并试图使一些东西尽可能强大,你可以尝试:

$("img.active").closest('a[href]').attr("href");

这样,即使你的 html 看起来像这样:

<a href="something.html">
    <a name="anchor">
        <img src="img1.jpg" class="active">
    </a>
</a>

你仍然会得到你需要的:)

.parent() is all you need!

$("img.active").parent().attr("href");

Here is the documentation :)

As per Kyle's comment, and in an attempt to make something as robust as possible, you could try:

$("img.active").closest('a[href]').attr("href");

that way, even if your html looks like this:

<a href="something.html">
    <a name="anchor">
        <img src="img1.jpg" class="active">
    </a>
</a>

you'll still get what you need :)

绝對不後悔。 2024-10-27 22:42:44

$("img.active").closest("a").attr("href");

$("img.active").closest("a").attr("href");

楠木可依 2024-10-27 22:42:44
$("img.active").closest('a').attr("href");
$("img.active").closest('a').attr("href");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文