我真的很感激,如果有人可以幫助我在這裏...即時還挺堅持PHP數組和Ajax
functions.php
--------------
class stats{
public function Updates()
{
$query = mysql_query("SELECT blah blah ") or die(mysql_error());
while($row=mysql_fetch_array($query))
$data[]=$row;
if(!empty($data))
{
return $data;
}
}
--------------
div_load.php
--------------
include_once('functions.php');
$son = new stats();
$updatesarray=$son->Updates();
if($updatesarray)
{
foreach($updatesarray as $data)
{
$name=data['name'];
<div >blah blah</div>
}
}
-----------
index.php
-----------
我嘗試使用jQuery負荷函數來獲取新的內容....而不是一個頁面每次刷新...它與頁面刷新工作..但我不能得到它與jQuery加載功能....可以使用幫助..謝謝
你在使用jQuery加載函數的HTML頁面中使用了哪些代碼? – jcolebrand 2011-05-20 20:25:59
什麼不起作用?任何錯誤?需要更多細節。 – 2011-05-20 20:26:47
可能會更好地在您的PHP中重新調用json格式,並讓jQuery在AJAX調用中解析 – 2011-05-20 20:27:59