我試圖讓我的AJAX/JSON的腳本工作,我已經看過了計算器,但無法找到任何看起來會有所幫助。基本上所有我想要做的是當用戶點擊一個提交按鈕,一個隱藏的輸入值被髮送到另一個PHP腳本通過AJAX,它會被改變等...然後通過AJAX發回,並顯示在一個內部div通過一個響應,我不知道我做錯了什麼。通過AJAX發送隱藏輸入到php腳本不工作
目前我得到什麼,沒有輸出或任何東西。
我會嘗試儘可能在代碼中,我在下面給出的深入,感謝所有幫助。主頁上
AJAX腳本
<script>
$(document).ready(function() {
$(".add_detail_land_down").click(function() {
var hidden_count = $('input[name=addon_detail_hidden_count]').val();
$.ajax({
type: "GET",
url: "ajax_script.php",
data: {
hidden_count: hidden_count
},
dataType: "json",
statusCode: {
success: function (data) {
$("#total_hidden").html(data.total_hidden);
}
}
});
})
});
$(".add_detail_land_down").click();
</script>
主要頁面的表單頭(認爲我也可以添加它,只是櫃面)
<form action="" method="post">
隱藏輸入主頁
上<input type="hidden" name="addon_detail_hidden_count" id="addon_detail_hidden_count" class="addon_detail_hidden_count" value="1" />
的啓動
主頁上的AJAX程序提交按鈕<input name="add_detail_land_down" type="submit" class="add_detail_land_down" value="add_detail_down"/>
在ajax_script.php
<?php
$hidden_count = $_GET["hidden_count"];
$hidden_count = $hidden_count + 1;
include 'connect_to_mysql.php';
echo json_encode(array("total_hidden" => $hidden_count));
?>
感謝您的任何和所有幫助
所使用的任何開發工具,像螢火蟲,看錯誤的請求/響應週期? –
是的,我已經嘗試過鉻合金開發工具,似乎沒有得到任何錯誤 –