您好,登錄后才能下訂單哦!
這篇文章主要介紹“微信小程序怎么實現(xiàn)textarea組件”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“微信小程序怎么實現(xiàn)textarea組件”文章能幫助大家解決問題。
多行輸入框
屬性名 | 類型 | 默認值 | 說明 |
---|---|---|---|
value | String | 輸入框的內(nèi)容 | |
placeholder | String | 輸入框為空時占位符 | |
placeholder-style | String | 指定 placeholder 的樣式 | |
placeholder-class | String | textarea-placeholder | 指定 placeholder 的樣式類 |
disabled | Boolean | false | 是否禁用 |
maxlength | Number | 140 | 最大輸入長度,設(shè)置為0的時候不限制最大長度 |
auto-focus | Boolean | false | 自動聚焦,拉起鍵盤。頁面中只能有一個 <textarea/> 或<input/> 設(shè)置 auto-focus 屬性 |
focus | Boolean | false | 獲取焦點(開發(fā)工具暫不支持) |
auto-height | Boolean | false | 是否自動增高,設(shè)置auto-height時,style.height不生效 |
bindfocus | EventHandle | 輸入框聚焦時觸發(fā),event.detail = {value: value} | |
bindblur | EventHandle | 輸入框失去焦點時觸發(fā),event.detail = {value: value} | |
bindlinechange | EventHandle | 輸入框行數(shù)變化時調(diào)用,event.detail = {height: 0, heightRpx: 0, lineCount: 0} |
示例代碼:
<!--textarea.wxml--> <view class="section"> <textarea bindblur="bindTextAreaBlur" auto-height placeholder="自動變高" /> </view> <view class="section"> <textarea placeholder="placeholder顏色是紅色的" placeholder- /> </view> <view class="section"> <textarea placeholder="這是一個可以自動聚焦的textarea" auto-focus /> </view> <view class="section"> <textarea placeholder="這個只有在按鈕點擊的時候才聚焦" focus="{{focus}}" /> <view class="btn-area"> <button bindtap="bindButtonTap">使得輸入框獲取焦點</button> </view> </view>
//textarea.js Page({ data: { height: 20, focus: false }, bindButtonTap: function() { this.setData({ focus: true }) }, bindTextAreaBlur: function(e) { console.log(e.detail.value) } })
Bug & Tipbug
: 微信版本 6.3.30
,textarea
在列表渲染時,新增加的 textarea
在自動聚焦時的位置計算錯誤tip
: 請勿在 scroll-view
中使用 textarea
組件
關(guān)于“微信小程序怎么實現(xiàn)textarea組件”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。