Heim  >  Artikel  >  Backend-Entwicklung  >  javascript - 使用php获取一个通过JS跳转的最终网址

javascript - 使用php获取一个通过JS跳转的最终网址

WBOY
WBOYOriginal
2016-06-06 20:35:411881Durchsuche

地址为:http://prosperent.com/store/product/411677-18579-0/?k=CARDINAL+12132+E...

最终地址:http://www.walmart.com/ip/Cardinal-Brands-Inc-Clearvue-EasyOpen-Extra-...

使用的是这段JS跳转,无奈不懂JS,无从下手啊

<code>        var getParams = function()
        {
            var params = {};
            window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
                params[key] = value;
            });

            return params;
        };
</code>

回复内容:

地址为:http://prosperent.com/store/product/411677-18579-0/?k=CARDINAL+12132+E...

最终地址:http://www.walmart.com/ip/Cardinal-Brands-Inc-Clearvue-EasyOpen-Extra-...

使用的是这段JS跳转,无奈不懂JS,无从下手啊

<code>        var getParams = function()
        {
            var params = {};
            window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
                params[key] = value;
            });

            return params;
        };
</code>

getParams() 是把 url 里面的 querystring 提取出来,例如:

'?a=1&b=2' => { a: '1', b: '2' }

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn