当前位置: 代码迷 >> ASP.NET >> asp.net做动态菜单出现document.all.item1.style.top=parseInt(document.all.item1.style.to),该怎么解决
  详细解决方案

asp.net做动态菜单出现document.all.item1.style.top=parseInt(document.all.item1.style.to),该怎么解决

热度:6501   发布时间:2013-02-25 00:00:00.0
asp.net做动态菜单出现document.all.item1.style.top=parseInt(document.all.item1.style.to)
asp.net做动态菜单出现document.all.item1.style.top=parseInt(document.all.item1.style.to)参数无效,代码如下
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="lelfbotton.aspx.cs" Inherits="lelfbotton" %>
<!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 runat="server">
<style type="text/css">
  .titleStyle{
  background-image:url(images/button.gif); color:#ffffff;
  font-size:9pt;cursor:hand;
  }
  .contentStyle{
  background-color:#E4E8F3;color:blue;font-size:9pt;
  }

.style1 {
color: #999999;
font-family: "宋体", Verdana;
font-size: 9pt;
}
a:link {
color: #003366;
text-decoration: underline;
}
a:visited {
text-decoration: underline;
color: #003366;
}
a:hover {
text-decoration: none;
color: #FF0000;
}
a:active {
text-decoration: underline;
color: #FF0000;
}
body,td,th {
color: #CCCCCC;
}
-->
</style>
</head>

<body>

  <script language="JavaScript">
<!--
 var layerTop=0; //菜单顶边距
 var layerLeft=0; //菜单左边距
 var layerWidth=130; //菜单总宽
 var titleHeight=25; //标题栏高度
 var contentHeight=330; //内容区高度
 var stepNo=10; //移动步数,数值越大移动越慢

 var itemNo=0;runtimes=0;
 document.write('<span id=itemsLayer style="position:absolute;overflow:hidden;left:'+layerLeft+';top:'+layerTop+';width:'+layerWidth+';">');
 function addItem(itemTitle,itemContent){
  itemHTML='<div id=item'+itemNo+' itemIndex='+itemNo+' style="position:relative;left:0;top:'+(-contentHeight*itemNo)+';width:'+layerWidth+';"><table width=100% cellspacing="0" cellpadding="0">'+
  '<tr><td height='+titleHeight+' onclick=changeItem('+itemNo+') class="titleStyle" align=center >'+itemTitle+'</td></tr>'+
  '<tr><td height='+contentHeight+' class="contentStyle" valign=top>'+itemContent+'</td></tr></table></div>';
  document.write(itemHTML);
  itemNo++;}
 
   

 addItem('<table width="125" height="25" border="0" cellpadding="0" cellspacing="0"><tr><td height="2"><img src="images/button/bt_gerenyouxiang.gif" width="125" height="25"></td></tr></table>','<table width=96% border="0" align=center cellpadding=0 cellspacing=1 bgcolor="E4E8F3"><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="tdsyjsz.asp" target="main_body">土地收益金设置</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="fwflxsz.asp" target="main_body">手续费类型设置</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="ssqysz.asp" target="main_body">行政区域设置</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="sfblsz.asp" target="main_body">税费比例设置</a></div></td></tr><tr><td height="25"bgcolor="F8FCFF"><div align="center" class="style1"><a href="czysz.asp" target="main_body">操作员设置</a></div></td></tr><tr><td height="25"bgcolor="F8FCFF"><div align="center" class="style1"><a href="jdsz.asp" target="main_body">街道设置</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="xzqysz.asp" target="main_body">级别设置</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="dianzidituquyujiagechaxunxuanze.asp" target="main_body">电子地图区域查询</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="shoujianxinxixiugaixuanze.asp" target="main_body">收件信息的修改撤销</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="cwtj.asp" target="main_body">错误件统计</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a href="Ukeyzhuce.asp" target="main_body">U盾重新注册</a></div></td></tr><tr><td height="25" bgcolor="F8FCFF"><div align="center" class="style1"><a>年目标设置</a></div></td></tr></table>');
  相关解决方案