javascript获取web应用根目录的方法

Lara ·
更新时间:2024-11-13
· 521 次阅读

代码如下:
<script>
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);
}
var webpath=getRootPath(); //webpath就是目录路径变量
</script>



web应用 Web 方法 根目录 JavaScript

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章