0

ここに私のコードがあります

<script type="text/javascript">
     $.ajax({
     type: "POST",
     url: "proses.php",
     data: {
         noKartu: noK,
         nmKartu: nP,
         tujuan: bT,
         idBus: iB,
         jum: ind,
         noKursi: nKursi,
         biaya: harga,
         tgl: tK
     }
 }); 
</script>

私がやりたいことは、ajax がデータを proses.php に投稿した後、ページは次のページに直接移動することです。ありがとう

4

3 に答える 3

3

次のように、ajax に成功のコールバックを追加して、次のページにリダイレクトできます。

$.ajax({
    type: "POST",
    url: "proses.php",
    data: {
        /*insert your data here*/
    },
    success: function (data) {
        location.href = "http://your.next.page";
    }
});
于 2013-07-05T10:07:14.753 に答える