⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 roomlist.html

📁 类QQ聊天其他人不需帐号就可自由下载此源码
💻 HTML
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>房间列表</title>
<script language="jscript" type="text/jscript" src="../jscript/Config.js"></script>
<script language="javascript" type="text/javascript">
<!--

var sta = "";
function list_rm()
{
	sta = "list_rm";
	sendRequest(serverUrl+'/ChatService/room.asmx', 'li_rm', 'Post', '');
}
function xmlResponse() {
if(sta == "list_rm")
{
var xml = req.responseXml;
var nodes = xml.documentElement.getElementsByTagName("Room");
if(nodes.length==0)
{
	alert("对不起请您先到V3系统登陆。");
}
if(nodes.length!=0)
{
	var totle = nodes.length;
	var liststr = "<table border='0' width='100%'>";
	for(i=0;i<totle;i++)
	{
		if(i%3==0)
			liststr += "<tr>";
		var node = nodes.item(i).childNodes;
		liststr += "<th width='33%'><img src='../images/RoomList_select_go.gif' alt='进入' border='0' width='15' height='15' /><a href=javascript:go_room('roomid="+node.item(0).text+"')>";
		liststr += node.item(1).text;
		var ln = node.item(1).text.length;
		liststr += "</a></th>";	
		if((i+1)%3==0||i+1==totle)
			liststr += "</tr>";

	}
	liststr += "</table>";
	liststr += "<p align='right'>当前房间总数:"+totle+"</p>";
	list.innerHTML = liststr;
	}
}
}
function go_room(pram)
{
	sta = "go_room";
	sendRequest(serverUrl+'/ChatService/users.asmx', 'reset_usrm', 'Post', pram);
	window.location.href=serverUrl+"/Chat/user/Room.html?"+pram;
}
-->
</script>
<script language="javascript" type="text/javascript" src="../jscript/HttpQueryString.js"></script>
<script language="javascript" type="text/javascript" src="../jscript/HttpRequest.js"></script>
<link href="../css/RoomList.css" rel="stylesheet" type="text/css" />
</head>

<body onload="list_rm();setInterval(list_rm,5000);">
<table width="90%" border="0">
  <tr>
    <th align="left" scope="col"><img src="../images/RoomList_top_left.gif" alt="教师问答热线" width="291" height="48" /></th>
    <th align="right" scope="col"><img src="../images/RoomList_top_right.gif" alt="联系我们" width="167" height="31" border="0" usemap="#Map" longdesc="http://dic.cdut.edu.cn" /></th>
  </tr>
  <tr>
    <th colspan="2" scope="row"><table border="0">
      <tr>
        <th colspan="3" class="STYLE2" scope="col">当前房间列表</th>
        </tr>
      <tr>
        <th colspan="3" align="center" scope="row"><div id="list"></div></th>
        </tr>
      
    </table></th>
  </tr>
  <tr>
    <th colspan="2" scope="row"><hr width="100%" size="0" /></th>
  </tr>
  <tr>
    <th colspan="2" scope="row"><span class="STYLE6">http://dic.cdut.edu.cn  Tel. 028-84077321  Email: dic@cdut.edu.cn<br />
    Copyright since 2005  成都理工大学教务信息中心, All rights reserved.</span></th>
  </tr>
</table>

<map name="Map" id="Map"><area shape="rect" coords="2,3,28,27" href="#" alt="303864496" />
<area shape="rect" coords="28,3,55,28" href="http://dic.cdut.edu.cn/" target="_blank" alt="http://dic.cdut.edu.cn/" />
<area shape="rect" coords="58,3,161,27" href="mailto:seawind121@163.com" alt="seawind121@163.com" />
</map></body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -