oBao.open("GET","server2.asp",false)中的false 换成true就错误

jerryleeee 2007-03-08 11:48:14
<script language="JavaScript">
var oBao=null
function GetResult()
{
/*
*--------------- GetResult() -----------------
* GetResult()
* 功能:通过XMLHTTP发送请求,返回结果.
* 参数:str,字符串,发送条件.
* 实例:GetResult();
* author:wanghr100(灰豆宝宝.net)
* update:2004-5-27 19:02
*--------------- GetResult() -----------------
*/
oBao = new ActiveXObject("Microsoft.XMLHTTP");
//特殊字符:+,%,&,=,?等的传输解决办法.字符串先用escape编码的.
//Update:2004-6-1 12:22
oBao.open("GET","client2.asp",false);
oBao.send();
//服务器端处理返回的是经过escape编码的字符串.
var strResult = unescape(oBao.responseText);
//将字符串分开.
var arrResult = strResult.split("###");
RemoveRow(); //删除以前的数据.
//将取得的字符串分开,并写入表格中.
for(var i=0;i<arrResult.length;i++)
{
arrTmp = arrResult[i].split("@@@");
num1 = arrTmp[0]; //字段num1的值 lid
num2 = arrTmp[1]; //字段num2的值 uphone
num3=arrTmp[2]; //msg
num4=arrTmp[3]; //time
row1 = tb.insertRow();
cell1 = row1.insertCell();
cell1.innerText = num1;
cell2 = row1.insertCell();
cell2.innerText = num2;
cell3 = row1.insertCell();
cell3.innerText = num3;
cell4 = row1.insertCell();
cell4.innerText = num4;
}
}

function RemoveRow()
{
//保留第一行表头,其余数据均删除.
var iRows = tb.rows.length;
for(var i=0;i<iRows-1;i++)
{
tb.deleteRow(1);
}
}

function MyShow()
{
//2秒自动刷新一次,2秒取得一次数据.
timer = window.setInterval("GetResult()",2000);
}
</script>

<body onload="MyShow()">
<p>
</p>
<table width="89%" height="23" border="0" cellpadding="1" cellspacing="0" id="tb">
<tr>
<td>ID</td>
<td>num2</td>
<td>num3</td>
<td>num4</td>
</tr>
</table>


其中的oBao.open("GET","server2.asp",false)中的false 换成true就错误,不显示返回来的内容,ie状态栏提示 网页有错误。怎么会这样呢?
...全文
269 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
allen_cn 2007-03-08
  • 打赏
  • 举报
回复
异步说需要检查状态的
在状态变化的时候系统会自动处理
同步是执行完了后再继续执行

没有做过ajax,不知道说的对不对
allen_cn 2007-03-08
  • 打赏
  • 举报
回复
异步和同步的问题
asdfsadfasdfafa 2007-03-08
  • 打赏
  • 举报
回复
1 没看到onreadystatechange
2 oBao.send();--> oBao.send(null);

ajax 调用就哪个固定格式
有问题就alert几下

52,787

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 Ajax
社区管理员
  • Ajax
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧