You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
497 B
11 lines
497 B
<!--pages/test/textarea.wxml-->
|
|
<text>pages/test/textarea.wxml</text>
|
|
<view class="demobox">
|
|
<view class="title">1.自动变高</view>
|
|
<textarea auto-height="true" placeholder="默认一行,但可以自动变高"/>
|
|
<view class="title">2.自定义占位符颜色</view>
|
|
<textarea placeholder="playceholder颜色是红色" placeholder-style="color:red;"/>
|
|
<view class="title">3.禁用状态</view>
|
|
<textarea placeholder="该文本框已被禁用" disabled="true"/>
|
|
</view>
|