如图所示 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>无标题文档</title><script language="javascript">... function show_onOver(a) ...{ var theTrId; for(var i=1; i<=6; i++) ...{ theTrId = "trShow" + i; if(i==a) document.getElementById(theTrId).style.display = "block"; else document.getElementById(theTrId).style.display = "none"; } } function onloadFun() ...{ var theTrId; for(var i=1; i<=6 ; i++) ...{ theTrId = "trShow" + i; document.getElementById(theTrId).style.display = "none"; } }</script></head><body onLoad="onloadFun()"> <table width="100%%" border="0" cellspacing="0" cellpadding="0" id="theTableId"> <tr> <td id="1" onmouseover="this.bgColor='#C4DFF7';show_onOver(this.id)" onmouseout="this.bgColor='#ffffff';show_onOut(this.id)">新闻 </td> <td id="2" onmouseover="this.bgColor='#C4DFF7';show_onOver(this.id)" onmouseout="this.bgColor='#ffffff';show_onOut(this.id)">博客</td> <td id="3" onmouseover="this.bgColor='#C4DFF7';show_onOver(this.id)" onmouseout="this.bgColor='#ffffff';show_onOut(this.id)">论坛</td> <td id="4" onmouseover="this.bgColor='#C4DFF7';show_onOver(this.id)" onmouseout="this.bgColor='#ffffff';show_onOut(this.id)">图书</td> <td id="5" onmouseover="this.bgColor='#C4DFF7';show_onOver(this.id)" onmouseout="this.bgColor='#ffffff';show_onOut(this.id)">介绍</td> <td id="6" onmouseover="this.bgColor='#C4DFF7';show_onOver(this.id)" onmouseout="this.bgColor='#ffffff';show_onOut(this.id)">其他</td> </tr> <tr> <td id="trShow1" colspan="6"> <table width="100%%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CC6699"> <tr> <td>新闻 - Hello World! </td> </tr> </table> </td> </tr> <tr id="trShow2"> <td colspan="6"> <table width="100%%" border="0" cellpadding="0" cellspacing="0" bgcolor="#9999ff"> <tr> <td>博客 - Hello World! </td> </tr> </table> </td> </tr> <tr id="trShow3"> <td colspan="6"> <table width="100%%" border="0" cellpadding="0" cellspacing="0" bgcolor="#ff9933"> <tr> <td>论坛 - Hello World! </td> </tr> </table> </td> </tr> <tr id="trShow4"> <td colspan="6"> <table width="100%%" border="0" cellpadding="0" cellspacing="0" bgcolor="#99ee44"> <tr> <td> 图书 - Hello World! </td> </tr> </table> </td> </tr> <tr id="trShow5"> <td colspan="6"> <table width="100%%" border="0" cellpadding="0" cellspacing="0" bgcolor="#00CCFF"> <tr> <td> 介绍 - Hello World! </td> </tr> </table> </td> </tr> <tr id="trShow6"> <td colspan="6"> <table width="100%%" border="0" cellpadding="0" cellspacing="0" bgcolor="#006600"> <tr> <td>其他 - Hello World! </td> </tr> </table> </td> </tr> </table> </body></html>