标签: jquery
此代码在所有浏览器中获取路径 - 除了ie7,当它返回完整的URL
$(selector).attr('href');
如何调整此代码以始终返回路径?
/foo/bar/x.html
不
http://www.sample.com/foo/bar/x.html
答案 0 :(得分:4)
$(selector).attr('href').replace('http://'+window.location.hostname,'')