大家好,我是 ajax 新手,我正在尝试从 php 代码中获取数据,这是我的 ajax 代码:
function blodvotingview(contentid)
{
var xmlhttp;
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Your browser does not support XMLHTTP!");
return;
}
var url="index.php";
url=url+"?hp=1";
url=url+"&m=blogenvoting";
url=url+"&contentid="+contentid;
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
function stateChanged()
{
if (xmlhttp.readyState==4)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
return new XMLHttpRequest();
}
if (window.ActiveXObject)
{
// code for IE6, IE5
return new ActiveXObject("Microsoft.XMLHTTP");
}
return null;
}
这是我的 html 代码 {entry_id} 是数字参数:
<a href="" onclick="blodvotingview({entry_id});return false;" title="Vote Up">view</a>
<p>Suggestions: <span id="txtHint"></span></p>
这是我要回显的 php 代码:
<?php
showcomment()
function showcomment()
{
echo "yes";
}
?>
但它不起作用,请帮助我。