jquery get href in children()

前端之家收集整理的这篇文章主要介绍了jquery get href in children()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
alert($(this).children().next().html());

回报

<a href="thelink.PHP?id=XXXX">click me...</a>

如何更改以上语句仅抓取href?

尝试过attr(‘href’)但不能让它工作。

(是的,jq-noob,没有时间。)

//编辑 – 添加代码

<div class="row">
  <div class="date">
    <h2>27</h2>
    <h3>dec</h3>
  </div>
  <h2><a href="/wpb/index.PHP?id=4192#4199">the title..</a></h2>
  <p>the description...</p>
</div>

jq invoked by:
$("#threecol .row").click(function() {  
  alert($(this).children().next().href);
});

问候,

解决方法

使用.attr(‘href’)查找属性值。

编辑:H2内的第一个锚点:

alert($(this).find('h2 a:first').attr('href'));

如果您喜欢并使用锚中的类,也可以通过类引用它。

alert($(this).find('.myLink').attr('href'));
原文链接:https://www.f2er.com/jquery/181951.html

猜你在找的jQuery相关文章