我發現我無法將php與javascript混合使用,因此我嘗試了AJAX。在下面的代碼中,我希望ajax函數從getcount.php頁面獲取一個值並將其返回給調用者函數。下面的代碼不起作用。錯誤在哪裏?將Javascript與Javascript混合使用
<script type="text/javascript">
function getcount(day)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","getcount.php?"+day,true);
xmlhttp.send();
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
return xmlhttp.responseText;
}
}
</script>
<script type="text/javascript">
$(function() {
var previousPoint;
var d1 = [];
for (var i = 0; i <= 10; i += 1)
d1.push([i, getcount(i)]);
.
.
.
你的標題有點怪:AJAX是使用Javascript – fmgp 2012-04-20 18:41:47
你缺少一個右}在getCount將函數的結束。儘量保持一致的代碼縮進,那麼這種事情很快就會明顯:) – Armatus 2012-04-20 18:44:56
我加了一個}但是... – 2012-04-20 18:50:59