使用ajax,我試圖顯示在文本框中鍵入的內容,但由於某種原因它沒有顯示任何內容。我知道ajax函數本身被調用,通過在函數內部使用alert,我認爲真正的問題實際上是在test2.php中,但我不確定我做錯了什麼。請看看:使用ajax顯示輸入的內容無法正常工作,PHP,AJAX,JAVASCRIPT
test1.php
<?php
include('ajax.php');
echo "<input type = 'text' name = 'select' onkeyup = 'ajax(\"test2.php\",\"select\",\"output\")'>";
echo "<div id = 'output'/>";
?>
test2的
<?php
$select = $_POST['select'];
echo $select;
?>
ajax.php
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type = "text/javascript">
function ajax(url,select,id) {
$.ajax({
type: "POST",
url: url,
data: { select: $('select[name="select"]').val()},
error: function(xhr,status,error){alert(error);},
success:function(data) {
document.getElementById(id).innerHTML = data;
}
});
}
</script>
選擇[名稱=「選擇」]無效。不應該''輸入[name ='select']「' – ksealey