美文网首页
Query string parameters

Query string parameters

作者: VincentZhou | 来源:发表于2018-04-19 16:11 被阅读71次

    function getUrlParameter(name) {
    name = name.replace(/[[]/, '\[').replace(/[]]/, '\]');
    var regex = new RegExp('[\?&]' + name + '=([^&#]*)');
    var results = regex.exec(location.search);
    return results === null ? '' : decodeURIComponent(results[1].replace(/+/g, ' '));
    };

    相关文章

      网友评论

          本文标题:Query string parameters

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