我有以下代码,在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
})
});
});
任何人都知道修复此问题吗?
答案 0 :(得分:2)
您可以发布这些语句生成的HTML吗? Internet Explorer 6不支持CSS属性max-height,因此如果Thickbox使用它,它将无法工作。
您确定需要兼容Internet Explorer 6吗?