語法 1:
option( optionName )
返回:Object
獲取當前與指定
optionName
關聯的值。-
optionName類型:String要獲取的選項的名稱。
代碼示例:
調用方法:
var isDisabled = $( ".selector" ).textinput( "option", "disabled" );
語法 2:
option()
返回:PlainObject
獲取包含表示當前文本輸入選項哈希的鍵/值對的對象。
- 此簽名不接受任何參數。
代碼示例:
調用方法:
var options = $( ".selector" ).textinput( "option" );
語法 3:
option( optionName, value )
返回:jQuery (plugin only)
設置與指定
optionName
關聯的 textinput 選項的值。代碼示例:
調用方法:
$( ".selector" ).textinput( "option", "disabled", true );
語法 4:
option( options )
返回:jQuery (plugin only)
為文本輸入設置一個或多個選項。
-
options類型:Object要設置的option-value 對的Map。
代碼示例:
調用方法:
$( ".selector" ).textinput( "option", { disabled: true } );
相關用法
- 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 initSelector用法及代碼示例
- JQuery Mobile Textinput enhanced用法及代碼示例
- JQuery Mobile Textinput disabled用法及代碼示例
- JQuery Mobile Textinput wrapperClass用法及代碼示例
- 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 option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。