如何在URL中转换此JavaScript

时间:2014-07-01 23:59:47

标签: javascript php url

我有这段代码:

function name() {
    $.ajax({
      type: "POST",
      url: "/index.php",
      data: { id:  $("#id").val(),  date: new Date().getTime()}, 
    }); 
}

我想了解放入网址的翻译是什么。我已经尝试过所有的东西而且它没有用。在我看来,它应该是index.php?id= ...但不是。

2 个答案:

答案 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接收。