美文网首页
微信小程序 textarea的show-confirm-bar隐

微信小程序 textarea的show-confirm-bar隐

作者: CNSTT | 来源:发表于2021-04-24 17:45 被阅读0次

一、前言

| show-confirm-bar | boolean | true | 否 | 是否显示键盘上方带有”完成“按钮那一栏 |

二、错误代码

<view class="test">
  <textarea class="url-input" bindblur="bindTextAreaBlur" bindfocus="bindTextAreaFocus" show-confirm-bar="false"
    placeholder="请输入" maxlength="-1" />
</view>

三、生效代码

show-confirm-bar="{{false}}"

<view class="test">
  <textarea class="url-input" bindblur="bindTextAreaBlur" bindfocus="bindTextAreaFocus" show-confirm-bar="{{false}}"
    placeholder="请输入" maxlength="-1" />
</view>

谢谢阅读,有帮助的点个❤!

相关文章

网友评论

      本文标题:微信小程序 textarea的show-confirm-bar隐

      本文链接:https://www.haomeiwen.com/subject/uvslrltx.html