91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

小程序表單多行輸入框表格的示例分析

發布時間:2021-06-04 14:05:25 來源:億速云 閱讀:171 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關小程序表單多行輸入框表格的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

多行輸入框。

屬性名類型默認值說明
valueString
輸入框的內容
placeholderString
輸入框為空時占位符
placeholder-styleString
指定 placeholder 的樣式
placeholder-classStringtextarea-placeholder指定 placeholder 的樣式類
disabledBooleanfalse是否禁用
maxlengthNumber140最大輸入長度,設置為 -1 的時候不限制最大長度
auto-focusBooleanfalse自動聚焦,拉起鍵盤。
focusBooleanfalse獲取焦點
auto-heightBooleanfalse是否自動增高,設置auto-height時,style.height不生效
fixedBooleanfalse如果 textarea 是在一個position:fixed的區域,需要顯示指定屬性 fixed 為 true
cursor-spacingNumber0指定光標與鍵盤的距離,單位 px 。取 textarea 距離底部的距離和 cursor-spacing 指定的距離的最小值作為光標與鍵盤的距離
bindfocusEventHandle
輸入框聚焦時觸發,event.detail = {value: value}
bindblurEventHandle
輸入框失去焦點時觸發,event.detail = {value: value}
bindlinechangeEventHandle
輸入框行數變化時調用,event.detail = {height: 0, heightRpx: 0, lineCount: 0}
bindinputEventHandle
當鍵盤輸入時,觸發 input 事件,event.detail = {value: value},bindinput 處理函數的返回值并不會反映到 textarea 上
bindconfirmEventHandle
點擊完成時, 觸發 confirm 事件,event.detail = {value: value}

示例代碼:

<!--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><view class="section">  <form bindsubmit="bindFormSubmit">    <textarea placeholder="form 中的 textarea" name="textarea"/>    <button form-type="submit"> 提交 </button>  </form></view>
//textarea.js
Page({
  data: {
    height: 20,
    focus: false
  },
  bindButtonTap: function() {
    this.setData({
      focus: true
    })
  },
  bindTextAreaBlur: function(e) {
    console.log(e.detail.value)
  },  bindFormSubmit: function(e) {    console.log(e.detail.value.textarea)  }
})

Bug & Tip

  1. bug: 微信版本6.3.30textarea在列表渲染時,新增加的textarea在自動聚焦時的位置計算錯誤。

  2. tip:textareablur事件會晚于頁面上的tap事件,如果需要在button的點擊事件獲取textarea,可以使用formbindsubmit

  3. tip: 不建議在多行文本上對用戶的輸入進行修改,所以textareabindinput處理函數并不會將返回值反映到textarea上。

  4. tip:textarea組件是由客戶端創建的原生組件,它的層級是最高的。

  5. tip: 請勿在scroll-view中使用textarea組件。

  6. tip:css動畫對textarea組件無效。

感謝各位的閱讀!關于“小程序表單多行輸入框表格的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

叙永县| 渝中区| 尼玛县| 东阿县| 随州市| 沁阳市| 泗阳县| 沈阳市| 兴宁市| 舒兰市| 广汉市| 晋中市| 龙山县| 明星| 上饶县| 江川县| 泰和县| 康定县| 肇源县| 仙居县| 南漳县| 资阳市| 剑河县| 绵竹市| 云浮市| 凤山县| 寿光市| 上思县| 闵行区| 鄂伦春自治旗| 龙江县| 曲麻莱县| SHOW| 平江县| 绥中县| 中西区| 洪江市| 曲沃县| 涪陵区| 大宁县| 贺州市|