• 解析url path

    参数

    • 可选url: string = location.href

    返回 string

    u.parseUrlPath('https://www.baidu.com/index'); // '/index'
    u.parseUrlPath('https://www.1223-tewre.com/index'); // '/index'
    u.parseUrlPath('https://www.测试.test.com/对方是否'); // '/对方是否'
    u.parseUrlPath('https://www.测试.test.com/index?test=123'); // '/index'
    u.parseUrlPath('https://www.测试.test.com/index/test#test'); // '/index/test'
    u.parseUrlPath('https://www.测试.test.com:8080/index/test#test'); // '/index/test'
    u.parseUrlPath('file:///E:/wechatCache'); // '/E:/wechatCache'
    u.parseUrlPath('/index.php'); // '/index.php'
    u.parseUrlPath(); // '/'