2

这是我的js代码

function load(div_tag,thefile)
{

    if(window.XMLHttpRequest)
    {
        xmlhttp = new XMLHttpRequest();
    }
    else
    {
        xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
    }
    xmlhttp.onreadystatechange = function()
    {
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
        {
            document.getElementById(div_tag).innerHTML = xmlhttp.responseText;
        }
    }
    xmlhttp.open('GET', thefile, true);
    xmlhttp.send();
}

这是我的php代码

echo '<div style="float:left; margin-left:2px; margin-top:17px; background:#666; text-align:center; width:auto;"><a href="#div" onclick="load(\'div\',\'include/comment_form.php\')" style="text-decoration:none;"><b style="color:white;">Add comment</b></a></div>';

echo '<div id="div" align="left" style="clear:both;"></div>';

问题是它在 xampp 中工作,但在我的网站上不起作用。我是初学者请帮助我。

4

1 回答 1

2

适合成功评论的答案:

该函数load()应返回值truefalse,因为它位于标记的onclick处理程序中。<a由于load()不返回任何内容,因此结果取决于浏览器。

只需返回true即可load()激活锚重定向

function load(div_tag,thefile)
{
    ...
    xmlhttp.open('GET', thefile, true);
    xmlhttp.send();

    return true;
}
于 2013-02-03T14:10:32.600 回答