jquery-ui 当内容禁用白色-space 换行时,对话框大小不正确
jquery-ui dialog doesn't size correctly when content has white-space wrapping disabled
<div style="white-space: nowrap;">
Some text containing spaces which could be wrapped.
</div>
<script type="text/javascript">
$(function(){
$("div").dialog();
});
</script>
打开此对话框时,尺寸太窄无法显示展开的内容。
如何在不设置任意宽度的情况下确保对话框足够宽?
如果我没猜错,添加 width:auto
作为对话框选项就足够了
$("div").dialog({
width:'auto'
});
<div style="white-space: nowrap;">
Some text containing spaces which could be wrapped.
</div>
<script type="text/javascript">
$(function(){
$("div").dialog();
});
</script>
打开此对话框时,尺寸太窄无法显示展开的内容。
如何在不设置任意宽度的情况下确保对话框足够宽?
如果我没猜错,添加 width:auto
作为对话框选项就足够了
$("div").dialog({
width:'auto'
});