$(document).ready(function(){
$("#button").click(function(){
var miles = $('#miles').val();
$.get("thetestsearch.php", 'miles=' + miles, function(data){
$("#results").html(data);
});
return false;
});
});
如何将整个回复加载到#results
,而不是只将正在处理的变量加载到#results
?
答案 0 :(得分:0)
使用点(。)或方括号([])运算符。例如,如果示例中的数据具有名为名称或 id 的属性,则可以执行以下操作:
$('#results').html(data.name);
或
$('#results').html(data['id']);
答案 1 :(得分:0)
我认为最好的答案是http://api.jquery.com/jQuery.get/
答案 2 :(得分:-1)
$("#results").html(data.YourVariable);
有效吗?