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


JQuery Mobile Textinput autogrow用法及代碼示例


用法:

autogrow
類型:Boolean
默認:true
此選項由autogrow延期。

是否在第一次出現時更新 textarea 元素的大小,以及元素內容的變化。

此選項僅適用於基於 textarea 元素的文本輸入小部件。

此選項也作為數據屬性公開:data-autogrow="false"

代碼示例:

使用指定的autogrow 選項初始化文本輸入:

$( ".selector" ).textinput({
  autogrow: false
});

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

// Getter
var autogrow = $( ".selector" ).textinput( "option", "autogrow" );
 
// Setter
$( ".selector" ).textinput( "option", "autogrow", false );

相關用法


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