不返回任何東西,這是對Ajax的簡單的測試,我想送我的index.php變量t,讓我process.php和警報數字15的數據(T),當我點擊鏈接,但我的問題是沒有任何警告在阿賈克斯
這是我的index.php
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function() {
var t = 10;
$("#btn").click(function() {
$.ajax({
type:'post',
url:'process.php',
data:{
't':t
},
success:(function (response) {
alert(response);
}
})
})
})
</script>
<button id="btn">Click!</button>
這是我process.php像下面
<?php
$res = $_POST['t'] + 5;
return $res
?>
你得到任何錯誤控制檯?也可以嘗試添加'error:function'並查看你得到的錯誤 –
您可以指向任何**在PHP中使用「return」而不是輸出內容來生成頁面響應的示例嗎?發佈前請詳細研究。 –
你需要養成[接受答案](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work)的習慣,它可以幫助你解決你的問題。您將獲得積分,其他人將被鼓勵幫助您。 –