UNPKG

@ssports_fe/ssutils

Version:
16 lines (12 loc) 287 B
/** * * @desc 获取url路径名 * @return {String} default: index */ const getPageName = () => { let u = window.location.pathname; let a = u.split(/\//); let m = a.pop().match(/(?:^|\/)($|[^.]+)/); return m[1] ? m[1] : 'index'; }; module.exports = getPageName;