找出链接的父链接并在其前面加上一些内容

发布于 2024-09-18 00:13:03 字数 567 浏览 12 评论 0原文

我正在尝试做这样的事情

if ($(this).parent() == $('div.propdata')){

    $(this).prepend('<a class="booknow2 sidelink" href="../../availability/default.aspx"><span>Book now &raquo;</span></a>');

}

顺便说一句 $(this)evenprop

似乎无法让它发挥作用。

这是我的代码

<div class="propdata" id="FARM"><div class="evenprop">This is where the prepend would be</div></div>

,如果 evenprop 的父级是 propdata,我需要它只在前面添加该位。

I'm trying do something like this

if ($(this).parent() == $('div.propdata')){

    $(this).prepend('<a class="booknow2 sidelink" href="../../availability/default.aspx"><span>Book now »</span></a>');

}

By the way $(this) is evenprop.

Can't seem to get it to work.

This is my code

<div class="propdata" id="FARM"><div class="evenprop">This is where the prepend would be</div></div>

I need it to only prepend that bit if the parent of evenprop is propdata.

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

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

发布评论

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

评论(1

撩动你心 2024-09-25 00:13:03

您可以在 .parent().length 查看是否匹配,如下所示:

if ($(this).parent('div.propdata').length){
  $(this).prepend('<a class="booknow2 sidelink" href="../../availability/default.aspx"><span>Book now »</span></a>');
}

您可以在这里尝试一下,因为 .parent() 仅返回直接父级如果它与选择器匹配,它比 .parent 更快的测试().is(选择器)

You can use a selector on .parent() and .length to see if it matched, like this:

if ($(this).parent('div.propdata').length){
  $(this).prepend('<a class="booknow2 sidelink" href="../../availability/default.aspx"><span>Book now »</span></a>');
}

You can give it a try here, since .parent() only returns the immediate parent if it matches the selector, it's a quicker test than .parent().is(selector).

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