我想获取位置和第一个文件夹,如:
http://www.example.com/test/ var $location = window.location.href; alert ($location);
这回来了
http://www.example.com/test/location-test.html
所以我希望它能将所有内容归还为“test /”,所以我最终只能:
http://www.example.com/test/
提前致谢!
解决方法
你可以试试这个.
var url = location.protocol + "//" + document.domain + "/" + location.pathname.split('/')[1] + "/";