Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 HTML5 浏览器中,您可以使用this.pathname:
this.pathname
$('a').each(function () { console.log(this.pathname); });
小提琴
pathname是Anchor 元素的属性,而不是 jQuery 对象的属性。
pathname
编辑:锚的pathname属性在 HTML5 中已经标准化,但即使是 IE6 本身也支持它。
利用
$(this).attr('href')
该.attr()方法提取属性。您可以在http://api.jquery.com/attr/上查看文档
.attr()