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