Skip to content

Instantly share code, notes, and snippets.

@maolion
Last active August 29, 2015 14:10
Show Gist options
  • Save maolion/b240d9e421645afad38d to your computer and use it in GitHub Desktop.
Save maolion/b240d9e421645afad38d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="textml; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
.STYLE2 {
font-size: 9pt;
}
.menu_title{
color:#000;
}
.menu_title2{
color:red;
}
-->
</style>
<script>
function showsubmenu(sid) {
var el = document.getElementById("submenu" + sid);
if (el.style.display == "none") {
el.style.display = '';
//eval("submenu" + sid + ".style.display='';");
}
else {
el.style.display = 'none';
//eval("submenu" + sid + ".style.display='none';");
}
}
</script>
</head>
<body>
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center" background="Images/Admin_left_1.gif" class="menu_title" id="menuTitle2" style="cursor:hand;" onclick="showsubmenu(1)" onmouseover="this.className='menu_title2';" onmouseout="this.className='menu_title';">
<span class="STYLE2">
网站信息管理
</span>
</td>
</tr>
<tr>
<td bgcolor="#E7E7E7" id='submenu1' style="display:">
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center">1</td>
</tr>
<tr>
<td height="25" align="center">2</td>
</tr>
<tr>
<td height="25" align="center">3</td>
</tr>
<tr>
<td height="25" align="center">4</td>
</tr>
<tr>
<td height="25" align="center">5</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center" background="Images/Admin_left_1.gif" class="menu_title" id="menuTitle2" style="cursor:hand;" onclick="showsubmenu(2)" onmouseover="this.className='menu_title2';" onmouseout="this.className='menu_title';">
<span class="STYLE2">
网站信息管理
</span>
</td>
</tr>
<tr>
<td bgcolor="#E7E7E7" id='submenu2' style="display:">
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center">1</td>
</tr>
<tr>
<td height="25" align="center">2</td>
</tr>
<tr>
<td height="25" align="center">3</td>
</tr>
<tr>
<td height="25" align="center">4</td>
</tr>
<tr>
<td height="25" align="center">5</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center" background="Images/Admin_left_1.gif" class="menu_title" id="menuTitle3" style="cursor:hand;" onclick="showsubmenu(3)" onmouseover="this.className='menu_title2';" onmouseout="this.className='menu_title';">
<span class="STYLE2">
网站信息管理
</span>
</td>
</tr>
<tr>
<td bgcolor="#E7E7E7" id='submenu3' style="display:">
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center">1</td>
</tr>
<tr>
<td height="25" align="center">2</td>
</tr>
<tr>
<td height="25" align="center">3</td>
</tr>
<tr>
<td height="25" align="center">4</td>
</tr>
<tr>
<td height="25" align="center">5</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center" background="Images/Admin_left_1.gif" class="menu_title" id="menuTitle4" style="cursor:hand;" onclick="showsubmenu(4)" onmouseover="this.className='menu_title2';" onmouseout="this.className='menu_title';">
<span class="STYLE2">
网站信息管理
</span>
</td>
</tr>
<tr>
<td bgcolor="#E7E7E7" id='submenu4' style="display:">
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center">1</td>
</tr>
<tr>
<td height="25" align="center">2</td>
</tr>
<tr>
<td height="25" align="center">3</td>
</tr>
<tr>
<td height="25" align="center">4</td>
</tr>
<tr>
<td height="25" align="center">5</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment