語法 1:
option( optionName )
返回:Object
獲取當前與指定
optionName
關聯的值。-
optionName類型:String要獲取的選項的名稱。
代碼示例:
調用方法:
var isDisabled = $( ".selector" ).popup( "option", "disabled" );
語法 2:
option()
返回:PlainObject
獲取包含表示當前彈出選項哈希的鍵/值對的對象。
- 此簽名不接受任何參數。
代碼示例:
調用方法:
var options = $( ".selector" ).popup( "option" );
語法 3:
option( optionName, value )
返回:jQuery (plugin only)
設置與指定
optionName
關聯的彈出選項的值。代碼示例:
調用方法:
$( ".selector" ).popup( "option", "disabled", true );
語法 4:
option( options )
返回:jQuery (plugin only)
為彈出窗口設置一個或多個選項。
-
options類型:Object要設置的option-value 對的Map。
代碼示例:
調用方法:
$( ".selector" ).popup( "option", { disabled: true } );
相關用法
- JQuery Mobile Popup open用法及代碼示例
- JQuery Mobile Popup overlayTheme用法及代碼示例
- JQuery Mobile Popup initSelector用法及代碼示例
- JQuery Mobile Popup dismissible用法及代碼示例
- JQuery Mobile Popup classes用法及代碼示例
- JQuery Mobile Popup create( event, ui )用法及代碼示例
- JQuery Mobile Popup arrow用法及代碼示例
- JQuery Mobile Popup beforeposition( event, ui )用法及代碼示例
- JQuery Mobile Popup transition用法及代碼示例
- JQuery Mobile Popup defaults用法及代碼示例
- JQuery Mobile Popup enable用法及代碼示例
- JQuery Mobile Popup reposition用法及代碼示例
- JQuery Mobile Popup shadow用法及代碼示例
- JQuery Mobile Popup tolerance用法及代碼示例
- JQuery Mobile Popup close用法及代碼示例
- JQuery Mobile Popup theme用法及代碼示例
- JQuery Mobile Popup destroy用法及代碼示例
- JQuery Mobile Popup afterclose( event )用法及代碼示例
- JQuery Mobile Popup positionTo用法及代碼示例
- JQuery Mobile Popup disabled用法及代碼示例
- JQuery Mobile Popup corners用法及代碼示例
- JQuery Mobile Popup disable用法及代碼示例
- JQuery Mobile Popup afteropen( event )用法及代碼示例
- JQuery Mobile Popup history用法及代碼示例
- JQuery Mobile Pagecontainer beforeshow( event, ui )用法及代碼示例
注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Popup option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。