js 获取当前URL地址

来源:互联网 发布:winrar压缩软件 mac版 编辑:程序博客网 时间:2024/05/16 08:19
//获取当前URL地址function GetUriPath() {    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 + '/');//框架中使用这个    //return (prePath + '/');}
0 0