当我打印出 HTMLa
标记的对象时:我看到了
href: "http://www.example.com/page.html#abc.1.2"
hash: "#abc.1.2"
当我做
$(document.body).on('click',"a",function(event){
console.log( $(this).attr("href") );
});
我只得到"#abc.1.2"
,这是哈希值,而不是整个 URL。为什么会这样,我怎样才能获得整个 URL?