手机
当前位置:查字典教程网 >编程开发 >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中的bold()方法使用详解

javascript函数特点实例

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

JavaScript动态添加style节点的方法

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

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

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

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

谈一谈javascript中继承的多种方式

动态加载jQuery的方法

精品推荐
分类导航