我有 jquery 模式窗口。我打开此窗口单击单击此处参考,这是我的代码:
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Button runat="server" Text="Button" ID="Button" />
<a onclick ="$('#divReuse').dialog();" href="#">click here</a>
<div id="divReuse">
this is content of the modal window.
</div>
</ContentTemplate>
</asp:UpdatePanel>
我的更新面板中有一个按钮。当我单击该按钮时,它会进行回发(异步)。在更新面板内进行此回发之后,我再次单击链接单击此处
问题是 jquery 在我的标记中添加了具有相同内容的额外 div