我刚刚使用JQuery 1.4.1和UI 1.8rc1编写了一个小示例应用程序。我所做的只是将构造函数指定为:
var theDialog = $(".mydialog").dialog({
autoOpen: false,
resizable: false,
modal: true,
width:'auto'
});
我知道你说这使得它占据了浏览器窗口的100%宽度,但它在这里工作得很好,在FF3.6,Chrome和IE8中进行了测试。
我没有进行AJAX调用,只是手动更改对话框的HTML,但不要认为这会导致任何问题。其他一些css设置会把它敲掉吗?
唯一的问题是它使宽度偏离中心,但我找到了这个支持票证,他们提供了一种解决方法,将语句放在setTimeout中以解决问题。dialog('open')
这是我的头部标签的内容:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery-ui.min.js"></script>
<link href="jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function(){
var theDialog = $(".mydialog").dialog({
autoOpen: false,
resizable: false,
modal: true,
width: 'auto'
});
$('#one').click(function(){
theDialog.html('some random text').dialog('open');
});
$('#two').click(function(){
theDialog.html('<ul><li>Apple</li><li>Orange</li><li>Banana</li><li>Strawberry</li><li>long text string to see if width changes</li></ul>').dialog('open');
});
$('#three').click(function(){
//this is only call where off-centre is noticeable so use setTimeout
theDialog.html('<img src="./random.gif" width="500px" height="500px" />');
setTimeout(function(){ theDialog.dialog('open') }, 100);;
});
});
</script>
我从 http://jquery-ui.googlecode.com/files/jquery-ui-1.8rc1.zip 下载了Jquery UI的js和css。和身体:
<div class='mydialog'></div>
<a href='#' id='one'>test1</a>
<a href='#' id='two'>test2</a>
<a href='#' id='three'>test3</a>