|
发表于 2003-5-25 01:34:08
|
显示全部楼层
新浪BBS是一个典型的例子,研究一下这段代码,那个changeWin()是起关键作用的。
<html><head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>新浪论坛_新浪网</title>
<style type=text/css>
.o1{position:absolute; font-family:Webdings; background-color:#255ca9; font-size:12px; color:#ffffff; cursor:hand;}
</style>
<script language="javascript" src="http://image2.sina.com.cn/dailynews/timelog.js"></script>
<script language=javascript>
document.domain="sina.com.cn";
function changeWin(){
if(parent.forum.cols != "13,*"){
parent.forum.cols = "13,*";
document.all.menuSwitch.innerHTML = "<font class=o1>4</font>";
}
else{
parent.forum.cols = "145,*";
document.all.menuSwitch.innerHTML = "<font class=o1>3</font>";
}
}
</script>
</head>
<body onload='javascript:log_start("forum")' onunload='javascript:log_over("forum");' topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 bgcolor=#d0d0c8>
<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>
<tr><td width=100%><iframe id=forumList name=forumList style="height:100%; width:100%; visibility:inherit;" scrolling=no frameborder=0 src="/publish/groups/menu.html"></iframe></td>
<td bgcolor=#000000><img src=images/c.gif width=1 height=1><td>
<td bgcolor=#ffffff><img src=images/c.gif width=1 height=1><td>
<td bgcolor=#d0d0c8>
<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>
<tr><td height=22 onclick=changeWin()><img src=images/c.gif width=10 height=1></td></tr>
<tr><td onclick=forumList.changeStyle(); id=viewSwitch><font class=o1>5</font></td></tr>
<tr><td onclick=changeWin() height=100% id=menuSwitch><font class=o1>3</font></td></tr>
</table></td></tr>
</table>
</body></html> |
|