笔记
程序员文章站
2022-07-12 21:10:52
...
js获取项目路径:
var curWwwPath=window.document.location.href;
//输出: http://localhost:8080/order/find.do?id=1
var pathName=window.document.location.pathname;
//输出: /order/find.do?id=1
var pos=curWwwPath.indexOf(pathName);
//输出: 21
var localhostPath=curWwwPath.substring(0,pos);
//输出: http://localhost:8080
上一篇: Webpack「一」-- 基本配置