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

在HTML页面中获取当前项目根路径的方法

程序员文章站 2022-06-24 09:15:53
在HTML页面获取项目根路径的方法: ......

在HTML页面获取项目根路径的方法:

function getRootPath(){
    var curPageUrl = window.document.location.href;
    var rootPath = curPageUrl.split("//")[0] + curPageUrl.split("//")[1].split("/")[0] 
                   + curPageUrl.split("//")[1].split("/")[1];
    return rootPath;
}