[求助]怎样获取网站根目录路径,并设成变量
如题,怎样获取网站根目录,并把它设成变量,可随时调用。比如:网站根目录在空间根目录bbs里,即http://www.,怎样获取到http://www.,并把它设成一个变量。下边代码,是弹出一个提示框,告知路径,不想弹出,而是设成变量,怎么弄:
<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);
}
alert (getRootPath());
</script>
[[it] 本帖最后由 thbwn 于 2008-5-10 08:33 编辑 [/it]]