for (int i = 0; i < dt.Rows.Count; i++)
        {
            topmenu = topmenu + "<a href=\"#\" target=\"main\"><div class=\"aa18\" onmouseover=\"this.className='aa19'\" onmouseout=\"this.className='aa18'\">" + dt.Rows[i][0].ToString() + "</div></a>";
        }
导航栏的栏目想加一个移入移出的特效改变样式,因为要根据权限动态生成栏目,所以写在了后台代码里,在前台<%=topmenu %>但现在有个问题,点了一个其他链接后,在连接的过程中,如果鼠标移到导航栏上,触发了onmouseover,原来的动作就会终止,即页面跳转不了,请问这是怎么回事?有什么办法能解决?