我们在$_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>
答案 0 :(得分:-1)
document.location.search
可以获取当前网址的GET值。
当像这样使用时:
document.location.search.substr(1).split("&");
你可以得到一个包含所有GET键和key=value
之类的值的数组。然后,只需在=
上拆分它们即可得到值。