<a href="http://www.google.com/">Google</a>
我知道如何从锚点获取href:
alert($(this).attr("href"));
但是如何获得锚标签的文字,即如何获得“Google”?
.text()
alert($(this).text());
如果您想要标记(.text()删除标签等),请使用.html()
.html()
alert($(this).html());
在这种情况下,没有什么区别,如果你有这样的话:
<a href="http://www.google.com/">Google <span>(External)</span></a>
那就是:
$(this).text() //"Google (External)" $(this).html() //"Google <span>(External)</span>"