AJAX:获取两份文件

时间:2014-02-14 15:11:00

标签: php ajax xmlhttprequest

我正在使用此AJAX代码加载PHP页面以更改MySQL子句的ORDER BY。 我还有一个名为getDESC的函数。

现在我想扩展这两个代码,它们有两个PHP文档。这些是katbox与kate.php。这可能吗,你可以帮忙写这段代码吗?

function getASC()
{
    xmlHttp = CreateXmlHttpObjet();

    if (xmlHttp == null)
        return;

    xmlHttp.onreadystatechange = function() {
        document.getElementById('ascbox').innerHTML = xmlHttp.responseText;
    };

    xmlHttp.open('GET', 'asc.php', true);
    xmlHttp.send(null);
}

1 个答案:

答案 0 :(得分:0)

只需更新您的功能,现在就可以致电getAJAX('ascbox', 'asc.php')getAJAX('katbox', 'kate.php')

function getAJAX(id, php)
{
    xmlHttp = CreateXmlHttpObjet();

    if (xmlHttp == null)
        return;

    xmlHttp.onreadystatechange = function() {
        document.getElementById(id).innerHTML = xmlHttp.responseText;
    };

    xmlHttp.open('GET', php, true);
    xmlHttp.send(null);
}