html页面获取项目路径

来源:互联网 发布:sql获取seq 编辑:程序博客网 时间:2024/05/17 08:14
记录学习
function getRootPath(){
var strFullPath=window.document.location.href;var strPath=window.document.location.pathname;var pos=strFullPath.indexOf(strPath);var prePath=strFullPath.substring(0,pos);var postPath=strPath.substring(0,strPath.substr(1).indexOf('/')+1);return(prePath+postPath);} alert (getRootPath());