gpt4 book ai didi

jquery 在children()中获取href

转载 作者:行者123 更新时间:2023-12-03 21:54:02 25 4
gpt4 key购买 nike

  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 中的第一个 anchor :

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

如果您愿意,也可以通过类引用它并在 anchor 中使用该类。

alert($(this).find('.myLink').attr('href'));

关于jquery 在children()中获取href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5298898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com