textarea

多行输入框。该组件是原生组件,使用时请注意相关限制。

属性名类型默认值说明最低版本
valueString输入框的内容
placeholderString输入框为空时占位符
placeholder-styleString指定 placeholder 的样式,目前仅支持color,font-size和font-weight
placeholder-classStringtextarea-placeholder指定 placeholder 的样式类
disabledBooleanfalse是否禁用
maxlengthNumber140最大输入长度,设置为 -1 的时候不限制最大长度
auto-focusBooleanfalse自动聚焦,拉起键盘。
focusBooleanfalse获取焦点
auto-heightBooleanfalse是否自动增高,设置auto-height时,style.height不生效
fixedBooleanfalse如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true
cursor-spacingNumber / String0指定光标与键盘的距离,单位px。取 textarea 距离底部的距离和 cursor-spacing 指定的距离的最小值作为光标与键盘的距离
cursorNumber指定focus时的光标位置
show-confirm-barBooleantrue是否显示键盘上方带有”完成“按钮那一栏
selection-startNumber-1光标起始位置,自动聚集时有效,需与selection-end搭配使用
selection-endNumber-1光标结束位置,自动聚集时有效,需与selection-start搭配使用
adjust-positionBooleantrue键盘弹起时,是否自动上推页面
bindfocusEventHandle输入框聚焦时触发,event.detail = { value, height },height 为键盘高度
bindblurEventHandle输入框失去焦点时触发,event.detail = {value, cursor}
bindlinechangeEventHandle输入框行数变化时调用,event.detail = {height: 0, heightRpx: 0, lineCount: 0}
bindinputEventHandle当键盘输入时,触发 input 事件,event.detail = {value, cursor, keyCode},keyCode 为键值,目前工具还不支持返回keyCode参数。bindinput 处理函数的返回值并不会反映到 textarea 上
bindconfirmEventHandle点击完成时, 触发 confirm 事件,event.detail = {value: value}
aria-labelString无障碍访问,(属性)元素的额外描述

示例代码:

  1. <!--textarea.qml-->
  2. <view class="section">
  3. <textarea bindblur="bindTextAreaBlur" auto-height placeholder="自动变高" />
  4. </view>
  5. <view class="section">
  6. <textarea
  7. placeholder="placeholder颜色是红色的"
  8. placeholder-style="color:red;"
  9. />
  10. </view>
  11. <view class="section">
  12. <textarea placeholder="这是一个可以自动聚焦的textarea" auto-focus />
  13. </view>
  14. <view class="section">
  15. <textarea placeholder="这个只有在按钮点击的时候才聚焦" focus="{{focus}}" />
  16. <view class="btn-area">
  17. <button bindtap="bindButtonTap">使得输入框获取焦点</button>
  18. </view>
  19. </view>
  20. <view class="section">
  21. <form bindsubmit="bindFormSubmit">
  22. <textarea placeholder="form 中的 textarea" name="textarea" />
  23. <button form-type="submit">提交</button>
  24. </form>
  25. </view>
  1. // textarea.js
  2. Page({
  3. data: {
  4. height: 20,
  5. focus: false
  6. },
  7. bindButtonTap() {
  8. this.setData({
  9. focus: true
  10. })
  11. },
  12. bindTextAreaBlur(e) {
  13. console.log(e.detail.value)
  14. },
  15. bindFormSubmit(e) {
  16. console.log(e.detail.value.textarea)
  17. }
  18. })
Bug & Tip
  • 请注意原生组件使用限制
  • tip: textareablur 事件会晚于页面上的 tap 事件,如果需要在 button 的点击事件获取 textarea,可以使用 formbindsubmit
  • tip: 不建议在多行文本上对用户的输入进行修改,所以 textareabindinput 处理函数并不会将返回值反映到 textarea 上。