1
4

2 回答 2

3

在 HTML5 浏览器中,您可以使用this.pathname

$('a').each(function () {
    console.log(this.pathname);
});

小提琴

pathnameAnchor 元素的属性,而不是 jQuery 对象的属性。

编辑:锚的pathname属性在 HTML5 中已经标准化,但即使是 IE6 本身也支持它。

于 2013-03-24T16:59:13.017 回答
0

利用

$(this).attr('href')

.attr()方法提取属性。您可以在http://api.jquery.com/attr/上查看文档

于 2013-03-24T16:59:10.273 回答