手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >javascript获取web应用根目录的方法
javascript获取web应用根目录的方法
摘要:复制代码代码如下:functiongetRootPath(){varstrFullPath=window.document.location...

复制代码 代码如下:

<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>

【javascript获取web应用根目录的方法】相关文章:

JavaScript中的parse()方法使用简介

javascript为按钮注册回车事件(设置默认按钮)的方法

js兼容火狐获取图片宽和高的方法

javascript实时显示当天日期的方法

javascript实现可全选、反选及删除表格的方法

删除javascript所创建子节点的方法

动态加载jQuery的方法

Javascript监视变量变化的方法

javascript实现点击按钮弹出一个可关闭层窗口同时网页背景变灰的方法

JavaScript实现表格点击排序的方法

精品推荐
分类导航