以下是我的网页的简化版本:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script language="javascript" type="text/javascript">
var cbFuncInit = function() {
$('div').click(function(evt) {
if (evt.target.type !== 'checkbox') {
var checkbox = $(':checkbox', this);
checkbox.attr('checked', !checkbox.attr('checked'));
evt.stopPropagation();
return false;
}
});
};
$(document).ready(function() {
cbFuncInit();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div id="myDiv" style="background-color:red;height:50px;width:50px;">
<asp:checkbox ID="Checkbox1" runat="server" ></asp:checkbox>
</div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<div id="myDiv" style="background-color:red;height:50px;width:50px;">
<asp:checkbox ID="Checkbox1" runat="server"></asp:checkbox>
</div>
</ItemTemplate>
</asp:Repeater>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Button1"/>
</Triggers>
</asp:UpdatePanel>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
</form>
</body>
</html>
这是一个简化的代码隐藏:
protected void Button1_Click(object sender, EventArgs e)
{
var list = new List<string> { "", "", "" };
Repeater1.DataSource = list;
Repeater1.DataBind();
ScriptManager.RegisterStartupScript(Page, Page.GetType(), "", "cbFuncInit();", true);
}
问题在于:
该页面允许您单击div以单击其嵌套复选框。但是,当回发到更多复选框时,然后使用ScriptManager.RegisterStartupScript重新绑定事件,原始div不再可点击,而新的div是......
然而(它变得更好)......
当您再次单击该按钮时,所有div现在都可以点击...
但等等......
当您再次单击该按钮时,第一个div将再次出现,不再可单击。
任何人都知道为什么?我想知道它是否与JQuery's event object有关。不幸的是,我的JavaScript调试技巧在这方面有点超越。感谢您的回复。
答案 0 :(得分:2)
如果不查看页面的实际版本,我不确定这里发生了什么,但是当您重新绑定事件时,似乎发生了某种冲突。
您可以尝试的一件事是:
$('div').click(function(evt){//function code here})
替换为$('div').live('click',function(evt){//function code here})
完成后,您不需要使用ScriptManager.RegisterStartupScript重新绑定事件,因为事件将通过委派捕获。继续通过回发添加新的复选框,事件将自动绑定...
希望能解决你的问题...