sort_btnがクリックされた際ajaxを使用しsort.phpまで値を送信し変数に格納したいのですが、下記のコードだと
Notice: Undefined index: order エラーが出てしまいます。どこか間違っていますでしょうか?
consoleで確認した所formの値はsort.jsまで飛ばせています。
sort.js
1sort.js 2 3$(function(){ 4 //送信確認 5 $('#sort_btn').on('click',function(){ 6 //フォームから入力値を取得 7 var order = $('#sort').val(); 8 9 console.log(order); 10 11 $.ajax({ 12 //phpに送信 13 type:'POST', 14 url:"sort.php", 15 data: { 16 order:order, 17 }, 18 success:function(date) { 19 if(date.match(/success/)){ 20 alert('送信が完了'); 21 location.href = "index.php"; 22 } 23 }, 24 error: function(){ 25 alert("エラー"); 26 } 27 }); 28 }); 29}); 30
sort.php
1sort.php 2 3<?php 4 $order = $_POST['order']; 5 6 $filter = []; 7 $options = [ 8 'sort' => ['time' => -1 9 ],]; 10 11 if($order == 2){ 12 $filter = []; 13 $options = [ 14 'sort' => ['time' => 1 15 ],]; 16 } 17 18
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。