我正在使用此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);
}
答案 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);
}