嗨,我试图从我的 Windows URL 获取基本 URL 和文件路径..但我无法得到它..请纠正我..
网址是:
http://sample.com:30023/portal/site/samples/index.jsp
当前输出为: http ://sample.com:30023/index.jsp ?
所需的输出是: http ://sample.com:30023/portal/site/samples/
使用的代码:
var baseURL = location.protocol + "//" + location.hostname + (location.port && ":" + location.port) + "/";