如何获取当前网页的上下文路径?
- 内容介绍
- 文章标签
- 相关推荐
本文共计100个文字,预计阅读时间需要1分钟。
javascript获取上下文路径:
javascriptfunction webContext() { var curWwwPath=window.document.location.href; var pathName=window.document.location.pathname; var pos=curWwwPath.indexOf(pathName); var rootPath=curWwwPath.substring(0, pos + pathName.length); return rootPath;}
//获得项目地址栏路径,根据需要增加 function webContext(){ var curWwwPath=window.document.location.href; var pathName=window.document.location.pathname; var pos=curWwwPath.indexOf(pathName); var localhostPaht=curWwwPath.substring(0,pos); var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1); return(localhostPaht+projectName); }
本文共计100个文字,预计阅读时间需要1分钟。
javascript获取上下文路径:
javascriptfunction webContext() { var curWwwPath=window.document.location.href; var pathName=window.document.location.pathname; var pos=curWwwPath.indexOf(pathName); var rootPath=curWwwPath.substring(0, pos + pathName.length); return rootPath;}
//获得项目地址栏路径,根据需要增加 function webContext(){ var curWwwPath=window.document.location.href; var pathName=window.document.location.pathname; var pos=curWwwPath.indexOf(pathName); var localhostPaht=curWwwPath.substring(0,pos); var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1); return(localhostPaht+projectName); }

