最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

微信小程序 textarea 組件詳解及簡單實例

 更新時間:2017年01月10日 15:08:48   投稿:lqh  
這篇文章主要介紹了微信小程序 textarea 組件詳解及簡單實例的相關(guān)資料,需要的朋友可以參考下

微信小程序textarea

相關(guān)文章:

微信小程序 Button

微信小程序 radio

微信小程序 slider

微信小程序 switch

微信小程序 textarea

微信小程序 picker-view

微信小程序 picker

微信小程序 label

微信小程序 input 

微信小程序 form

微信小程序 checkbox

多行輸入框。

屬性名 類型 默認(rèn)值 說明
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-style="color:red;" />
</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)文章

最新評論

灵武市| 尚义县| 浦县| 安国市| 广西| 漯河市| 蓬安县| 平原县| 会东县| 南陵县| 新干县| 尼玛县| 富阳市| 南岸区| 南和县| 荆州市| 龙里县| 读书| 德昌县| 射阳县| 巴楚县| 木兰县| 南京市| 浦江县| 和林格尔县| 六盘水市| 岳西县| 小金县| 绥芬河市| 萝北县| 武胜县| 安阳县| 乌拉特后旗| 石狮市| 文化| 潮州市| 利津县| 阿拉善左旗| 宝坻区| 威海市| 望城县|