找出链接的父链接并在其前面加上一些内容
我正在尝试做这样的事情
if ($(this).parent() == $('div.propdata')){
$(this).prepend('<a class="booknow2 sidelink" href="../../availability/default.aspx"><span>Book now »</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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
.parent()
和.length
查看是否匹配,如下所示:您可以在这里尝试一下,因为
.parent()
仅返回直接父级如果它与选择器匹配,它比.parent 更快的测试().is(选择器)
。You can use a selector on
.parent()
and.length
to see if it matched, like this: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)
.