我使用下面的代碼提交表單:在PHP index.php
如何使頁面的源代碼和沒有JSON的AJAX回讀響應?
$.ajax({
url: $('#myForm').attr('action'),
url: 'index.php',
type: 'post',
/*dataType: 'html json', *///tell the server that you expect json
data: {
"num" : $('#myNum').val(),
},
success: function(response) {
alert(response);
if (check_validate() == 1) {
alert(response);
}
else {}
}
});
然後,我有:
if (isset($_POST["num"])) {
$num = $_POST["num"];
if($num == 1)
echo "sure!";
}
的JS彈出窗口與sure!
和整個index.php
頁面的源代碼。有沒有辦法刪除源代碼,只是沒有將dataType
設置爲JSON
而顯示響應?
死(),退出......是你的朋友! – donald123 2014-10-27 14:15:28
所以大概你已經有更多的代碼/ HTML後,你的小if()塊?只要'輸出()'一旦你輸出「肯定!」。 – 2014-10-27 14:15:59