textarea


多行输入框

属性

属性名类型必填默认值说明
valueString多行输入框的初始内容
typeString"text"多行输入框的类型
placeholderString提示用户输入的内容
disabledBooleanfalse是否禁用
focusBooleanfalse获取焦点(web端不支持)
maxlengthNumber140最大输入长度
return-key-typeString"done"设置键盘右下角按钮的文字(web端不支持)
placer-holder-colorString“#666”指定placeholder的颜色(web端不支持)
cstyleString自定义样式,如 "color:red;text-align:center;",在新版内置组件 c-style 已废弃
rowsNumber2text-area行数,weex、web端生效
c-bind:inputEventHandle 键盘输入时触发 返回事件对象: event.type="input", event.detail={value}
c-bind:confirmEventHandle点击完成按钮时触发 返回事件对象: event.type="confirm", event.detail
c-bind:focusEventHandle输入框获取焦点时触发 返回事件对象: event.type="focus", event.detail
c-bind:blurEventHandle输入框失去焦点时触发 返回事件对象: event.type="blur", event.detail
type 的有效值:
说明
text文本类型的输入
password密码类型的输入
number数字类型的输入
return-key-type 的有效值:
说明
done右下角按钮为“完成”
search右下角按钮为“搜索”
next右下角按钮为“下一个”
go右下角按钮为“前往”

示例

  1. <template>
  2. <textarea placeholder="focus聚焦" focus="{{isfocus}}" c-bind:blur="bindblurevent"></textarea>
  3. </template>
  4. <script>
  5. class Textarea {
  6. data = {
  7. isfocus: false
  8. }
  9. methods = {
  10. bindblurevent() {
  11. console.log('blur')
  12. this.isfocus = false;
  13. }
  14. }
  15. mounted = function(res) {
  16. setTimeout(() => {
  17. this.isfocus = true;
  18. }, 300);
  19. }
  20. };
  21. export default new Textarea();
  22. </script>
  23. <script cml-type="json">
  24. {
  25. "base": {}
  26. }
  27. </script>

textarea  - 图1wx

textarea  - 图2web

textarea  - 图3native

查看完整示例

Bug & Tip

  • <textarea> wx端不能包裹在<scroller>里面
  • <textarea> web端不支持自动focus
  • <textarea> return-key-type字段web端不支持