0

我有 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 在此处输入图像描述

4

1 回答 1

1

按下关闭按钮时,我删除了 jquery 生成的 div。像这样:

 $('.ui-dialog.ui-widget.ui-widget-content.ui-corner-all').remove();
于 2013-04-24T09:11:08.500 回答