Get the page file name from the address bar

后端 未结 7 1184
隐瞒了意图╮
隐瞒了意图╮ 2020-12-09 15:32

I was wondering if it would be possible to get the page name from the address bar using jquery or javascript. I know this can be done using PHP but don\'t really want to as

7条回答
  •  旧时难觅i
    2020-12-09 16:02

    Try this:

    var pageName = (function () {
            var a = window.location.href,
                b = a.lastIndexOf("/");
            return a.substr(b + 1);
        }());
    

提交回复
热议问题