js获取页面名称

function pageName() {
    var strUrl = location.href;
    var arrUrl = strUrl.split("/");
    var strPage = arrUrl[arrUrl.length - 1];
    if (strPage.indexOf("?") >= 0)
    {
        strPage = strPage.split('?')[0];
    }
    return ReplaceAll(strPage, "#", "");
}

function ReplaceAll(str, sptr, sptr1)
{
    while (str.indexOf(sptr) >= 0) {
        str = str.replace(sptr, sptr1);
    }
    return str;
}

posted @ 2015-12-28 12:58  青春已不再  阅读(431)  评论(0编辑  收藏  举报