|
|
|
来源:yocin 时间:2013-10-6 17:38:54 栏目:技术支持 点击率:1074 |
我们在js文件里经常遇到使用图片等资源文件的地址,为了方便js能在不同目录下调用需要获取网站根路径来正确显示资源信息。 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()); |
|
|
|