在IE6中忽略jQuery UI Dialog maxHeight

时间:2011-08-19 14:16:33

标签: jquery jquery-ui internet-explorer-6 jquery-ui-dialog

我有以下代码,在IE6中它忽略了maxHeight。

$('.thickbox').click(function(){
    var href = "foo";
    var diaTitle = "bar";

    $("#dialogTest").load(href, function() {
        var container = $(this);
        container.dialog({
            bgiframe: true,
            opacity: false,
            draggable: false,
            resizable: false,
            height: 500,
            maxHeight: 550,
            width: 400,
            title: diaTitle,
            modal: true
        })
    });
});         

任何人都知道修复此问题吗?

1 个答案:

答案 0 :(得分:2)

您可以发布这些语句生成的HTML吗? Internet Explorer 6不支持CSS属性max-height,因此如果Thickbox使用它,它将无法工作。

您确定需要兼容Internet Explorer 6吗?