weexteam / article

This repos is a third party collection, and is not developed nor maintained by Apache Weex.
1.22k stars 141 forks source link

<textarea>组件 #95

Open acton393 opened 8 years ago

acton393 commented 8 years ago

本文档已迁移至 https://weex-project.io/cn/references/components/textarea.html ,此处不再维护,谢谢。

<textarea>

0.8

概述

textarea 是weex SDK 内置的一个组件,用于用户交互,接受用户输入数据。 可以认为是允许多行的 <input> Notes: <textarea>支持 <input> 支持的所有的事件.

子组件

这个组件不支持子组件。

属性

其他属性,可以查看 基本属性.

样式

文本样式: 查看 text styles

基本样式: 查看 组件基本样式

基本事件: 查看 基本事件

注意: <textarea> 不支持 click事件. 请使用input 或者change 事件替代.

事件对象参数

<div>
  <textarea
    autofocus="true"
    placeholder="..."
    value="我是一个多行版本的input组件">
  </textarea>
</div>
yundongbot commented 7 years ago

本文档已迁移至 https://weex-project.io/cn/references/components/textarea.html ,此处不再维护,谢谢。