用法:
height
默认:
"auto"
对话框的高度。
支持多种类型:- Number:以像素为单位的高度。
-
String: 唯一支持的字符串值是
"auto"
这将允许对话框高度根据其内容进行调整。
代码示例:
使用指定的 height
选项初始化对话框:
$( ".selector" ).dialog({
height: 400
});
初始化后获取或设置height
选项:
// Getter
var height = $( ".selector" ).dialog( "option", "height" );
// Setter
$( ".selector" ).dialog( "option", "height", 400 );
相关用法
- JQuery UI Dialog hide用法及代码示例
- JQuery UI Dialog minWidth用法及代码示例
- JQuery UI Dialog autoOpen用法及代码示例
- JQuery UI Dialog close用法及代码示例
- JQuery UI Dialog _allowInteraction用法及代码示例
- JQuery UI Dialog isOpen用法及代码示例
- JQuery Mobile Dialog defaults用法及代码示例
- JQuery UI Dialog resize( event, ui )用法及代码示例
- JQuery UI Dialog open( event, ui )用法及代码示例
- JQuery UI Dialog create( event, ui )用法及代码示例
- JQuery UI Dialog resizable用法及代码示例
- JQuery UI Dialog dragStart( event, ui )用法及代码示例
- JQuery Mobile Dialog create( event, ui )用法及代码示例
- JQuery UI Dialog resizeStart( event, ui )用法及代码示例
- JQuery UI Dialog closeText用法及代码示例
- JQuery Mobile Dialog disabled用法及代码示例
- JQuery UI Dialog widget用法及代码示例
- JQuery UI Dialog modal用法及代码示例
- JQuery Mobile Dialog initSelector用法及代码示例
- JQuery UI Dialog beforeClose( event, ui )用法及代码示例
- JQuery UI Dialog classes用法及代码示例
- JQuery UI Dialog drag( event, ui )用法及代码示例
- JQuery Mobile Dialog close用法及代码示例
- JQuery UI Dialog focus( event, ui )用法及代码示例
- JQuery UI Dialog draggable用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Dialog height。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。