码迷,mamicode.com
首页 > Web开发 > 详细

js获取页面名称

时间:2015-12-28 14:14:59      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

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;
}

js获取页面名称

标签:

原文地址:http://www.cnblogs.com/loveheyi/p/5082208.html

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