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


JQuery UI Buttonset items用法及代碼示例


用法:

items
類型:Selector
默認:"button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(ui-button)"
要轉換的後代元素作為按鈕管理。

代碼示例:

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

$( ".selector" ).buttonset({
  items: "button, input[type=button], input[type=submit]"
});

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

// Getter
var items = $( ".selector" ).buttonset( "option", "items" );
 
// Setter
$( ".selector" ).buttonset( "option", "items", "button, input[type=button], input[type=submit]" );

相關用法


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