我一直在嘗試使用php和ajax更改查詢。這是怎麼一回事呢使用ajax和php更改基於文本框更改的查詢
我有一個下拉式選單,更改時,它將被所選擇的數據複製到我使用javascript像這樣實現了文本框。
$(document).ready(function() { $("#animaloption").change(function() { $('#animalfilter').val($("#animaloption").val()); }); });
然後
我需要檢查是否與animalfilter的ID輸入文本框被改變,然後使用AJAX我做到了查詢它不知道是否因爲我不能獲取收益
$(document).ready(function() { $("#animaloption").change(function() { $('#animalfilter').val($("#animaloption").val()); var animal= $('#animalfilter').val($("#animaloption").val()); $.ajax({ url: "ajax/test.php", type: "post", data: animal, success: function (response) { $("#kind").html(response); } }); }); });
這是正確的
輸入與id = kind不顯示任何內容。
在我的test.php
<?php
$a = "SUCCESS";
return $a;
?>
請幫助你們。
感謝。
首先查詢它,你需要使用'方法:「POST」'而不是'type:「post」'。添加'失敗'回調可能表明一些錯誤。我總是引用這個文檔 - http://api.jquery.com/jquery.ajax/ – Chainat
小寫'post'很好,我想你會發現它不需要'POST'工作。讓我們看看你的表格。 – Rasclatt