美文网首页
把location.search处理成一个对象

把location.search处理成一个对象

作者: yorickJin | 来源:发表于2018-12-20 02:07 被阅读0次
    function parseUrlParams() {
        if (window.location.search.length <= 0) return false;
        var info = window.location.search.slice(1);
        var result = {};
        info.split('&').foreach(item => {
            result[decodeURIComponent(item.split('=')[0])] = decodeURIComponent(item.split('=')[1]);
        });
        return result;
    }
    

    相关文章

      网友评论

          本文标题:把location.search处理成一个对象

          本文链接:https://www.haomeiwen.com/subject/gvlekqtx.html