UpdatePanel中的tab失效如何解决?
这是我的tab实例,现在按了按钮后tab就失效了,请问如何解决啊?
网上查到用ScriptManager.RegisterStartupScript 来重新注册,但是对JS不是很懂,麻烦老师们给解答下,不胜感激~~
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="y4.aspx.cs" Inherits="DWQHpro.y4" %>
<!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>
<meta http-equiv="content-type" content="text/xml;charset=utf-8" />
<style type="text/css">
*{margin:0;padding:0;font-size:13px;line-height:1.5;}
body{padding:20px;}
.cur{color:#f60;border-bottom:1px solid #fff;font-weight:bold;background:#fff;cursor:default;}
#tab_,dl{position:relative;float:left;height:100px;width:300px;}
h4,dt{float:left;height:20px;margin:0 0 0 8px;display:inline;line-height:20px;width:60px;border:1px solid #ccc;position:relative;z-index:11;text-align:center;font-weight:normal;cursor:pointer;background:#eee;}
.c,dd{position:absolute;top:21px;border:1px solid #ccc;left:0;width:250px;padding:20px;overflow:hidden;display:block;}
#tab_{clear:left;}
h1{clear:left;padding:10px 0}
#tab_1.cur{color:#f60}
#tab_2.cur{color:blue}
#tab_3.cur{color:green}
</style>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<h1>mouseover</h1>
<dl id="tab">
<dt>美国</dt>
<dd>我都不怕</dd>
<dt>朝鲜</dt>
<dd>谁都怕我</dd>
<dt>某国</dt>
<dd>我谁都怕</dd>
</dl>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
<h1>click</h1>
<div id="tab_">
<h4>orange</h4>
<div class="c">桔红</div>
<h4>blue</h4>
<div class="c">蓝色</div>
<h4>green</h4>
<div class="c">绿色</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</form>
<script type="text/javascript">
function id(elem) { return document.getElementById(elem) }
function show(elem) { elem.style.display = ""; }
function hide(elem) { elem.style.display = "none"; }
function next(elem) {
do {
elem = elem.nextSibling;
} while (elem && elem.nodeType != 1);
return elem;
}
function tab(a, p) {
var p = (p === undefined) ? { e: "onclick", n: 1} : p,
node = id(a).firstChild,
x = [];
p.e = (p.e === undefined) ? "onclick" : p.e;
p.n = (p.n === undefined) ? 1 : p.n;
node = (node.nodeType !== 1) ? next(node) : node;
for (var i = 1, node; node; i++, node = next(node)) {
x[i] = node;
}
for (var i = 1; x[i]; i++) {
if (i % 2 == 0) { hide(