用法:
wrapperClass
類型:String
默認:
""
此選項的值是一個字符串,其中包含一個以空格分隔的類列表,這些類將應用於 textinput 小部件的最外層元素。
此選項也作為數據屬性公開:data-wrapper-class="true"
。
代碼示例:
使用指定的wrapperClass
選項初始化文本輸入:
$( ".selector" ).textinput({
wrapperClass: "custom-class"
});
初始化後獲取或設置wrapperClass
選項:
// Getter
var wrapperClass = $( ".selector" ).textinput( "option", "wrapperClass" );
// Setter
$( ".selector" ).textinput( "option", "wrapperClass", "custom-class" );
相關用法
- JQuery Mobile Textinput clearBtnText用法及代碼示例
- JQuery Mobile Textinput defaults用法及代碼示例
- JQuery Mobile Textinput preventFocusZoom用法及代碼示例
- JQuery Mobile Textinput keyupTimeoutBuffer用法及代碼示例
- JQuery Mobile Textinput disable用法及代碼示例
- JQuery Mobile Textinput clearBtn用法及代碼示例
- JQuery Mobile Textinput enable用法及代碼示例
- JQuery Mobile Textinput autogrow用法及代碼示例
- JQuery Mobile Textinput theme用法及代碼示例
- JQuery Mobile Textinput destroy用法及代碼示例
- JQuery Mobile Textinput option用法及代碼示例
- JQuery Mobile Textinput initSelector用法及代碼示例
- JQuery Mobile Textinput enhanced用法及代碼示例
- JQuery Mobile Textinput disabled用法及代碼示例
- JQuery Mobile Textinput corners用法及代碼示例
- JQuery Mobile Textinput refresh用法及代碼示例
- JQuery Mobile Textinput create( event, ui )用法及代碼示例
- JQuery Mobile Textinput classes用法及代碼示例
- JQuery UI Tabs event用法及代碼示例
- JQuery Mobile Toolbar hide用法及代碼示例
- JQuery UI Tabs option用法及代碼示例
- JQuery UI Tooltip position用法及代碼示例
- JQuery UI Tooltip disabled用法及代碼示例
- JQuery Mobile Toolbar addBackBtn用法及代碼示例
- JQuery UI Tooltip items用法及代碼示例
注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Textinput wrapperClass。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。