当前位置 : 主页 > 网络编程 > JavaScript >

js 获得上下文路径.txt

来源:互联网 收集:自由互联 发布时间:2021-06-30
js 获得上下文路径.txt //获得项目地址栏路径,根据需要增加function webContext(){ var curWwwPath=window.document.location.href; var pathName=window.document.location.pathname; var pos=curWwwPath.indexOf(pathName); var lo
js 获得上下文路径.txt
//获得项目地址栏路径,根据需要增加
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);  
}
网友评论