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


JQuery UI Button showLabel用法及代碼示例


用法:

showLabel
類型:Boolean
默認:true
是否顯示標簽。當設置為false 時不會顯示文本,但必須使用 icon 選項,否則將忽略showLabel 選項。

代碼示例:

使用指定的 showLabel 選項初始化按鈕:

$( ".selector" ).button({
  showLabel: false
});

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

// Getter
var showLabel = $( ".selector" ).button( "option", "showLabel" );
 
// Setter
$( ".selector" ).button( "option", "showLabel", false );

相關用法


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