Jquery Dialog模式卸载页面

时间:2014-11-14 07:40:04

标签: jquery ajax modal-dialog

我使用Jquery Dialog模式作为新aspx页面的持有者,问题是我第一次打开它的页面很好,但之后对话框内的页面不会再次点击页面加载事件,那么我怎么能当对话框关闭时完全卸载页面?

    <script type="text/javascript">
    $(function () {
        $('#divTest').dialog({
        modal: true,
        open: function () {
            if ($(this).is(':empty')) {
                $(this).load('WebForm1.aspx');

            }
        },
        close: function (type, data) { debugger; (window.location = 'WebForm2.aspx') },
        height: 500,
        width: 500,
        title: 'Title'
    });
    });
</script>

1 个答案:

答案 0 :(得分:0)

非常感谢Cerlin Boss,我找到了解决方案,我不得不停止对话框内页面的浏览器缓存。