當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery Mobile Loader textonly用法及代碼示例


用法:

textonly
類型:boolean
默認:false
如果為 true,則顯示消息時將隱藏 "spinner" 圖像。

代碼示例:

使用指定的 textonly 選項初始化加載程序:

$( ".selector" ).loader({
  textonly: true
});

初始化後獲取或設置textonly選項:

// Getter
var textonly = $( ".selector" ).loader( "option", "textonly" );
 
// Setter
$( ".selector" ).loader( "option", "textonly", true );

相關用法


注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Loader textonly。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。