用法:
defaults
类型:Boolean
默认:
false
将此选项设置为
true
指示其他小部件选项具有默认值并导致 jQuery Mobile 的小部件自动增强代码省略从数据属性中检索选项值的步骤。这可以改善启动时间。此选项也作为数据属性公开:data-defaults="true"
。
代码示例:
使用指定的defaults
选项初始化文本输入:
$( ".selector" ).textinput({
defaults: true
});
初始化后获取或设置defaults
选项:
// Getter
var defaults = $( ".selector" ).textinput( "option", "defaults" );
// Setter
$( ".selector" ).textinput( "option", "defaults", true );
相关用法
- JQuery Mobile Textinput destroy用法及代码示例
- JQuery Mobile Textinput disable用法及代码示例
- JQuery Mobile Textinput disabled用法及代码示例
- JQuery Mobile Textinput clearBtnText用法及代码示例
- JQuery Mobile Textinput preventFocusZoom用法及代码示例
- JQuery Mobile Textinput keyupTimeoutBuffer用法及代码示例
- JQuery Mobile Textinput clearBtn用法及代码示例
- JQuery Mobile Textinput enable用法及代码示例
- JQuery Mobile Textinput autogrow用法及代码示例
- JQuery Mobile Textinput theme用法及代码示例
- JQuery Mobile Textinput option用法及代码示例
- JQuery Mobile Textinput initSelector用法及代码示例
- JQuery Mobile Textinput enhanced用法及代码示例
- JQuery Mobile Textinput wrapperClass用法及代码示例
- JQuery Mobile Textinput corners用法及代码示例
- JQuery Mobile Textinput refresh用法及代码示例
- JQuery Mobile Textinput create( event, ui )用法及代码示例
- JQuery Mobile Textinput classes用法及代码示例
- JQuery UI Tabs event用法及代码示例
- JQuery Mobile Toolbar hide用法及代码示例
- JQuery UI Tabs option用法及代码示例
- JQuery UI Tooltip position用法及代码示例
- JQuery UI Tooltip disabled用法及代码示例
- JQuery Mobile Toolbar addBackBtn用法及代码示例
- JQuery UI Tooltip items用法及代码示例
注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 Textinput defaults。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。