html页面上的内容通过ajax提交,调用一个php文件,echo输出内容,输出的内容到了html上面,想在下面。
说白了,就是控制调用了的php文件的输出位置。functionRequestPost(){createxmlHttpRequest();varurl="btntreat....
说白了,就是控制调用了的php文件的输出位置。
function RequestPost()
{
createxmlHttpRequest();
var url = "btntreat.php"; //调用php文件打印输出内容。
xmlHttp.open("POST",url,true);
xmlHttp.onreadystatechange = handlestatechange;
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
xmlHttp.send(null);
}
这个文件的输出在页面的最顶端,而不是表单下面。
想让输出在表单的下面,应该怎么办呢?求高手指正! 展开
function RequestPost()
{
createxmlHttpRequest();
var url = "btntreat.php"; //调用php文件打印输出内容。
xmlHttp.open("POST",url,true);
xmlHttp.onreadystatechange = handlestatechange;
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
xmlHttp.send(null);
}
这个文件的输出在页面的最顶端,而不是表单下面。
想让输出在表单的下面,应该怎么办呢?求高手指正! 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询