我想以最大化模式打开JQuery Dialog 当我设置Width&模型窗口的高度属性它略微偏离内窗口&显示水平scollbar。我的代码有什么问题
$("#popupwin").dialog({ width: $(document).width(),
height: $(document).height(),
resizable: false });
答案 0 :(得分:3)
我猜你可能想用$(窗口)?
来自jQuery文档:
$(window).height(); // returns height of browser viewport
$(document).height(); // returns height of HTML document
基本上,HTML文档可能会比实际的窗口视口更长,因此在您的情况下使用$(document)是没有意义的。