欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

笔记

程序员文章站 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

 

相关标签: 系统路径 js