我正在构建一个搜索功能来检索谷歌地图的 XML 数据。
除此之外,我想显示实际找到了多少结果。
我想过在实际文档中做一个回显,但这可能会弄乱我的标记数据。成功调用后,我将如何获取 PHP 变量并在 Jquery 中检索它?
如果我的 PHP 看起来像这样:
$result = mysql_query($query);
if (!$result) {
die('Invalid query: ' . mysql_error());
}
$num_rows = mysql_num_rows($result);
像这样的Jquery:
$.ajax({
type: "POST",
url: "MapSearchxml.php",
data: {
dataFromDate: FromDate,
//lalala
dataHasPatio: HasPatio
},
beforeSend: function (html) { // this happens before actual call
$("#results").html('Please Wait');
$("#searchresults").show();
$(".phpFromDate").html(FromDate);
},
success: function (data, status, jqXHR) {
//Success?
},
dataType: 'xml'
});