0

我们有一个模态 jquery 对话框,可以在除我的 IE9 之外的浏览器中正常工作。在所有情况下,对话窗口都会以超过 15 秒的延迟关闭:确认、取消、关闭。我有一个不显示错误的 JSCompanion,一切都很好。

$( "#"+status ).dialog({
            resizable: false,
            height:180,
            width:400,
            modal: true,
            title: "ECO confirmation",
            buttons: {
                "Confirm": function() {
                    $.ajax({
                          type: 'GET',
                          url: url,
                          success: function(){
                              $( "#"+status).dialog( "close" );   
                              $('#'+trid+'>td.status').html(status);
                              $('#'+trid+'>td:last').html('');
                          }
                    });

                },
                "Cancel": function() {
                    $( "#"+status  ).dialog( "close" );
                }
            }
        });

有什么想法、见解、提示吗?会很好!

4

1 回答 1

0

检查您的 IE9 是否未设置为 IE8 浏览器模式。

于 2013-01-09T15:25:36.060 回答