欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序 textarea 组件详解及简单实例

程序员文章站 2023-11-26 12:24:46
微信小程序textarea 相关文章: 微信小程序 button 多行输入框。...

微信小程序textarea

相关文章:

微信小程序 button



多行输入框。

属性名 类型 默认值 说明
value string   输入框的内容
placeholder string   输入框为空时占位符
placeholder-style string   指定 placeholder 的样式
placeholder-class string textarea-placeholder 指定 placeholder 的样式类
disabled boolean false 是否禁用
maxlength number 140 最大输入长度,设置为0的时候不限制最大长度
auto-focus boolean false 自动聚焦,拉起键盘。页面中只能有一个 <textarea/> 或<input/> 设置 auto-focus 属性
focus boolean false 获取焦点(开发工具暂不支持)
auto-height boolean false 是否自动增高,设置auto-height时,style.height不生效
bindfocus eventhandle   输入框聚焦时触发,event.detail = {value: value}
bindblur eventhandle   输入框失去焦点时触发,event.detail = {value: value}
bindlinechange eventhandle   输入框行数变化时调用,event.detail = {height: 0, heightrpx: 0, linecount: 0}

示例代码:

<!--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>
//textarea.js
page({
 data: {
 height: 20,
 focus: false
 },
 bindbuttontap: function() {
 this.setdata({
 focus: true
 })
 },
 bindtextareablur: function(e) {
 console.log(e.detail.value)
 }
})

bug & tipbug: 微信版本 6.3.30textarea 在列表渲染时,新增加的 textarea 在自动聚焦时的位置计算错误tip: 请勿在 scroll-view 中使用 textarea 组件

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!