用法:
defaults
類型:Boolean
默認:
false
將此選項設置為
true
指示其他小部件選項具有默認值並導致 jQuery Mobile 的小部件自動增強代碼省略從數據屬性中檢索選項值的步驟。這可以改善啟動時間。此選項也作為數據屬性公開:data-defaults="true"
。
代碼示例:
使用指定的 defaults
選項初始化彈出窗口:
$( ".selector" ).popup({
defaults: true
});
初始化後獲取或設置defaults
選項:
// Getter
var defaults = $( ".selector" ).popup( "option", "defaults" );
// Setter
$( ".selector" ).popup( "option", "defaults", true );
相關用法
- JQuery Mobile Popup destroy用法及代碼示例
- JQuery Mobile Popup dismissible用法及代碼示例
- JQuery Mobile Popup disabled用法及代碼示例
- JQuery Mobile Popup disable用法及代碼示例
- JQuery Mobile Popup initSelector用法及代碼示例
- JQuery Mobile Popup classes用法及代碼示例
- JQuery Mobile Popup create( event, ui )用法及代碼示例
- JQuery Mobile Popup arrow用法及代碼示例
- JQuery Mobile Popup beforeposition( event, ui )用法及代碼示例
- JQuery Mobile Popup transition用法及代碼示例
- JQuery Mobile Popup enable用法及代碼示例
- JQuery Mobile Popup reposition用法及代碼示例
- JQuery Mobile Popup shadow用法及代碼示例
- JQuery Mobile Popup open用法及代碼示例
- JQuery Mobile Popup tolerance用法及代碼示例
- JQuery Mobile Popup overlayTheme用法及代碼示例
- JQuery Mobile Popup close用法及代碼示例
- JQuery Mobile Popup theme用法及代碼示例
- JQuery Mobile Popup afterclose( event )用法及代碼示例
- JQuery Mobile Popup positionTo用法及代碼示例
- JQuery Mobile Popup corners用法及代碼示例
- JQuery Mobile Popup afteropen( event )用法及代碼示例
- JQuery Mobile Popup history用法及代碼示例
- JQuery Mobile Popup option用法及代碼示例
- JQuery Mobile Pagecontainer beforeshow( event, ui )用法及代碼示例
注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Popup defaults。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。