我的簡單測試代碼存在問題。一切都是遠程服務器上的精細,它開始當我移動到本地主機(XAMPP)在本地主機上移動後,AJAX無法正常工作
我有一個頁面:
http://localhost/test/test.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>NeedNext - Try It</title>
<script type="text/javascript" src="javascript/jquery.js" ></script>
<script type="text/javascript">
$().ready(function() {
$("#listinx").load("ajax.php",{variable : "WTF"})
});
</script>
</head>
<body>
<div id="listinx"></div>
</body>
</html>
稱爲http://localhost/test/ajax.php包含:
<?php
echo "heh?";
echo $variable;
?>
我想在瀏覽器中的結果應該是b e:「heh?WTF」,但它只是「heh?」。任何想法有什麼不對? 請讓我知道, 謝謝, Michal
ajax.php做什麼?只需返回發送給它的變量「變量」? – Nick 2011-02-13 18:30:33
你應該寫`$(function(){...});`。 – SLaks 2011-02-13 18:30:43