我有兩個變量,current_min
和current_max
。我正在設置它們的值,但AJAX不起作用。未發送jQuery AJAX請求
var current_min = $('#min').val();
var current_max = $('#max').val();
//alert(current_min+current_max);
$.ajax({
type: "POST",
url: "v.php",
data: "city=" + current_min,
success: function(response) {
alert(response);
$('#result').html(response);
}
});
我檢查了控制檯和錯誤的表現是這樣的:
no element found
no element found
共享html pls..is警報顯示的東西? – guradio
'找到沒有元素'不是標準的錯誤消息,似乎與您所顯示的代碼無關。你能否爲你的問題添加一個更完整的代碼示例。 –
沒有警報顯示nthng ...只是在控制檯中出現錯誤 –