实现聊天室在线人员无刷新所需要的JavaScript技术 - 1

 1ASP精品屋 此只为实现无刷新的JavaScript客户端所需要的相似技术   
 2具体要跟程序结合起来。 by 探索者   
 3~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~'~~   
 4index.htm
 5```
 6<script>   
 7  
 8function renewlook()   
 9{   
10list.document.open();   
11list.document.close();   
12list.document.write("<HTML><HEAD><TITLE>聊天室</TITLE><style type=text/css>body, form, td, input,   
13select, textarea {font: 9pt 宋体,Arial;}s</style></HEAD><body bgcolor=ffffff>");   
14}   
15function writeStr(tempStr)   
16{   
17list.document.write(tempStr);   
18}   
19</script>
20```
21```
22<frameset border="false" frameborder="0" rows="*,60">
23<frameset border="0" cols="*,102" frameborder="auto" framespacing="0">
24<frame name="list" scrolling="auto" src="show.htm"/>
25<frame name="rightFrame" noresize="" scrolling="AUTO" src="about:blank"/>
26</frameset>
27<frameset border="0" cols="0,1*" frameborder="NO" framespacing="0">
28<frame cols="0,0" name="hiddenframe" noresize="" scrolling="NO" src="about:blank"/>
29<frame name="talk" scrolling="no" src="o.htm"/>
30<frame cols="0,0" name="frshow" noresize="" scrolling="NO" src="about:blank"/>
31</frameset>
32</frameset>
33```
34```
35<noframes>
36</noframes>
37```
Published At
Categories with Web编程
comments powered by Disqus