在这个答案中 https://stackoverflow.com/a/14199051/3195031
施工
$('a').click(function (e) {
e.preventDefault();
SearchApp.navigate(e.target.pathname, true);
});
使用
一般来说,这个对象是“e.target.pathname”
我试图找到一些javascript事件的文档,其中描述了属性路径名,但是失败了。也许有人可以提供一个链接?
答案 0 :(得分:1)
e.target - 是dom对象,在这种情况下是<a></a>
对象。通过w3c specs a
标签实现位置接口。这就是你得到它的答案。
http://dev.w3.org/html5/markup/a.html#a-interface - 例如,您可以阅读它。