1个回答
展开全部
var XMLHttp;
function createXMLHttpRequest()
{
if(window.XMLHttpRequest)
{
XMLHttp=new XMLHttpRequest();
}
else if(window.ActiveObject)
{
XMLHttp=new ActiveObject("Microsoft.XMLHttp");
}
}
function doAjax()
{
createXMLHttpRequest();
if(XMLHttp!=null)
{
XMLHttp.open("post", "login", true);
XMLHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;");
XMLHttp.onreadystatechange=proc;
XMLHttp.send(null);
}
else
{
alert("不能创建xml对象");
}
}
function proc()
{
if(XMLHttp.readyState==4)
{
if(XMLHttp.status==200)
{
var sob=document.getElementById("login");
var str=XMLHttp.responseText;
if(str!=0)
{
parent.frames["b_frame"].document.getElementById("login").innerHTML = "success!!!";
}
else
{
parent.frames["b_frame"].document.getElementById("login").innerHTML = "error!!!";
}
}
}
}
领悟吧 哥们
function createXMLHttpRequest()
{
if(window.XMLHttpRequest)
{
XMLHttp=new XMLHttpRequest();
}
else if(window.ActiveObject)
{
XMLHttp=new ActiveObject("Microsoft.XMLHttp");
}
}
function doAjax()
{
createXMLHttpRequest();
if(XMLHttp!=null)
{
XMLHttp.open("post", "login", true);
XMLHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;");
XMLHttp.onreadystatechange=proc;
XMLHttp.send(null);
}
else
{
alert("不能创建xml对象");
}
}
function proc()
{
if(XMLHttp.readyState==4)
{
if(XMLHttp.status==200)
{
var sob=document.getElementById("login");
var str=XMLHttp.responseText;
if(str!=0)
{
parent.frames["b_frame"].document.getElementById("login").innerHTML = "success!!!";
}
else
{
parent.frames["b_frame"].document.getElementById("login").innerHTML = "error!!!";
}
}
}
}
领悟吧 哥们
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询