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'));