innerHTML问题(100分)

  • 主题发起人 主题发起人 hupeh
  • 开始时间 开始时间
H

hupeh

Unregistered / Unconfirmed
GUEST, unregistred user!
页面A上有一表格,在点击表格时将“状态”改为正在查看后转到下一窗口B(同时将这个状态的内容进行改变),但是在“B窗口”点击“后退”返回到窗口A时,这个状态的内容还是原来的内容,怎么回事?
代码如下:

<html>
<head>
<meta http-equiv=&quot;Content-Type&quot;
content=&quot;text/html;
charset=gb2312&quot;>
<title>待处理业务</title>
<link href=&quot;css/style.css&quot;
rel=&quot;stylesheet&quot;
type=&quot;text/css&quot;>
<SCRIPT language=JavaScript src=&quot;js/common.js&quot;
type=text/JavaScript></SCRIPT>
<link href=&quot;css/menu.css&quot;
rel=&quot;stylesheet&quot;
type=&quot;text/css&quot;>
</head>
<script language=&quot;JavaScript&quot;
>
function show110Info(the,col,id)
{var E=eval('document.all.uaid'+id);
E.innerHTML=&quot;正在查看...&quot;;//待处理&quot;;
openURL(&quot;/sx110/show110.jsp?uaid=&quot;+id);
}
</script>
<body >
<table width=&quot;100%&quot;
border=&quot;0&quot;
cellpadding=&quot;1&quot;
cellspacing=&quot;0&quot;
bgcolor=&quot;#E7EFF7&quot;>
<tr>
<td >
<div align=&quot;center&quot;>待处理业务列表</div></td>
</tr>

<tr>
<td><table width=&quot;100%&quot;
border=&quot;0&quot;
cellspacing=&quot;2&quot;
cellpadding=&quot;0&quot;>
<tr>
<td bgcolor=&quot;#669933&quot;>
<div align=&quot;center&quot;><a href=&quot;test.htm&quot;>报警时间</a></div></td>
<td bgcolor=&quot;#669933&quot;>
<div align=&quot;center&quot;>报警级别</div></td>
<td bgcolor=&quot;#669933&quot;><div align=&quot;center&quot;>类别</div></td>
<td bgcolor=&quot;#669933&quot;><div align=&quot;center&quot;>报警地点</div></td>
<td bgcolor=&quot;#669933&quot;><div align=&quot;center&quot;>当前状态</div></td>
</tr>
<tr ><td bgcolor=&quot;#FFFFFF&quot;
style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,1,2);&quot;
>2006-1-2</td><td style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,2,2);&quot;
bgcolor=&quot;#FFFFFF&quot;
>报警级别</td><td style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,3,2);&quot;
bgcolor=&quot;#FFFFFF&quot;
>室外</td><td style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,4,2);&quot;
bgcolor=&quot;#FFFFFF&quot;
>遥</td><td id='uaid2' style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,5,2);&quot;
bgcolor=&quot;#FFFFFF&quot;
>接警</td></tr>
<tr ><td bgcolor=&quot;#F7F7F7&quot;
style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,1,1);&quot;
>2006-1-1</td><td style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,2,1);&quot;
bgcolor=&quot;#F7F7F7&quot;
>报警级别</td><td style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,3,1);&quot;
bgcolor=&quot;#F7F7F7&quot;
>室内</td><td style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,4,1);&quot;
bgcolor=&quot;#F7F7F7&quot;
>顶替</td><td id='uaid1' style=&quot;cursor:hand&quot;
onclick=&quot;show110Info(this,5,1);&quot;
bgcolor=&quot;#F7F7F7&quot;
>接警</td></tr>
</table></td>
</tr>
</table>
<p> </p></body>
</html>
 
受C/S的影响太大了,
这样是不行的
 
这跟C/S没有关系呀
 
后退
顶部