手机
当前位置:查字典教程网 >编程开发 >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常用方法总结

javascript的函数第1/3页

在JavaScript中使用NaN值的方法

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

JavaScript深度复制(deep clone)的实现方法

js+html5实现canvas绘制简单矩形的方法

JavaScript实现DIV层拖动及动态增加新层的方法

javascript生成不重复的随机数

JavaScript检测字符串中是否含有html标签实现方法

javascript函数特点实例

精品推荐
分类导航