0

我必须处理由 Ajax 请求调用的 html 页面上的请求参数。我的代码是:

$.ajax({
   type: "GET",
   url: "abc.html",
   data: "cat=1",
   dataType: "html",
   success: function(data) {
   $("#div").html(data);

  }
});

现在在 abc.html 页面上,我想使用“cat”请求参数。怎么可能?

4

1 回答 1

0

希望这个链接可以帮助你 - http://jquery-howto.blogspot.in/2009/09/get-url-parameters-values-with-jquery.html

function getUrlVars()
{
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}

来源:jquery 从 URL 获取查询字符串

于 2013-09-09T05:26:15.520 回答