在jquery中有任何$ _REQUEST等价物吗?

时间:2013-10-22 10:00:47

标签: javascript php jquery ajax

我们在$_REQUEST中使用PHP来接收发布/获取值,我正在寻找类似的功能/密钥来接收通过values发送的$.ajax。在java script / j query

示例:

<script>

function do_something(){
// here i want the value sent using ajax
return term;
}

$('#input').keyup(function(){
var term=$(this).val();
$.ajax({
url:do_something(),// << is this possible?? or should i try 
//url:do_something(term)  //<< this???
dataType:'json',
data:{term:term},
results:function(data){
alert(JSON.stringify(data));
}
});

</script>

1 个答案:

答案 0 :(得分:-1)

document.location.search可以获取当前网址的GET值。

当像这样使用时:

document.location.search.substr(1).split("&");

你可以得到一个包含所有GET键和key=value之类的值的数组。然后,只需在=上拆分它们即可得到值。