码迷,mamicode.com
首页 > 其他好文 > 详细

IE 取虚拟目录名称和绝对路径的获取

时间:2015-03-30 13:10:14      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

//获取网站虚拟目录名称
function GetVirtualDirectoryName() {
    var pathname = location.pathname;
    var pos = pathname.indexOf(‘/‘);
    return pathname.substr(0, pos);
}
//获取网站标头
//绝对路径的时候使用
function GetHeader() {
    var host = location.host;
    var dirName = GetVirtualDirectoryName();
    return "http://" + host + "/" + dirName;
}

 

IE 取虚拟目录名称和绝对路径的获取

标签:

原文地址:http://www.cnblogs.com/Dylanblogs/p/4377591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!