我以为我在 jQuery 网站上看到过关于此的错误报告,但现在我找不到它。我正在尝试在 IE6 中调整对话框的大小。但是当元素调整大小时,内容和标题栏不会缩小。但是,如果对话框变大,它们会调整大小。结果是关闭按钮最终被切断,并且如果用户将对话框的大小调整为更小,内容将被剪裁。
我已经尝试处理 resizeStop 事件并手动调整内容和标题栏的大小,但这会给我带来奇怪的结果。内容区域中元素的大小和位置仍然不正确。此外,即使我调整了标题栏的大小,关闭按钮仍然没有移回视图。有任何想法吗?如果这是 jQuery-ui 中的一个错误,有没有人知道一个好的解决方法?
<html>
<head>
<title>Example of IE6 resize issue</title>
<link rel="stylesheet" type="text/css" href="http://ui.jquery.com/repository/latest/themes/flora/flora.all.css" />
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("jquery", "1");
google.load("jqueryui", "1");
google.setOnLoadCallback(
function() {
$(document).ready(function()
{
$("#main-dialog").dialog();
});
});
</script>
</head>
<body>
<div id="main-dialog">
This is just some simple content that will fill the dialog. This example is
sufficient to reproduce the problem in IE6. It does not seem to occur in IE7
or FF. I haven't tried with Opera or Safari.
</div>
</body>
</html>