答案 0 :(得分:0)
有width
和height
选项:http://api.jqueryui.com/dialog/
.dialog({
width: 420,
height: 200,
...
});
答案 1 :(得分:0)
您最初可以在documentation
处设置宽度和高度答案 2 :(得分:0)
从上面的示例中,您可以执行此操作以获取模态的宽度和高度
$(".demo-frame").contents().find(".ui-dialog").width();
$(".demo-frame").contents().find(".ui-dialog").height();
你必须小心,因为模型在iframe中。
因此你应该使用$(".demo-frame").contents()
来获取模态
你也可以通过改变宽度和高度,传递你想要的尺寸:
$(".demo-frame").contents().find(".ui-dialog").width("100px");
$(".demo-frame").contents().find(".ui-dialog").height("100px");
答案 3 :(得分:0)
您可以使用指定的高度或宽度选项初始化对话框:
$(".selector").dialog({ height: 400 });
此外,您可以在初始化后设置高度或宽度选项:
$(".selector").dialog( "option", "height", 400 );