我有这段代码:
function name() {
$.ajax({
type: "POST",
url: "/index.php",
data: { id: $("#id").val(), date: new Date().getTime()},
});
}
我想了解放入网址的翻译是什么。我已经尝试过所有的东西而且它没有用。在我看来,它应该是index.php?id= ...
但不是。
答案 0 :(得分:1)
另一种选择是:
function name() {
$.get('index.php?id=' + $("#id").val() +'&date ='+ new Date().getTime() +'',function(data){
//work with the data callback here.
});
}
答案 1 :(得分:0)
试试这个:
function name() {
$.ajax({
type: "GET",
url: "/index.php",
data: { id: $("#id").val(), date: new Date().getTime()},
});
}
使用$ _GET [' id'],$ _GET [' date'] ...
接收ID和日期如果您使用POST类型,则必须使用$ _POST接收。