textArea的value值长度计算本身存在bug?
<view class="textarea">
<view wx:if="{{!changeTextArea}}">{{textAreaValue}}</view>
<textarea wx:if="{{changeTextArea}}" maxlength="60" bindinput="bindTextAreaBlur" placeholder="{{textAreaPlace}}" value="{{textAreaValue}}" />
<text>{{textAreaValue.length}}/60</text>
</view>
如上图,限定60个字后,实际输入60个字,但是在输入第61个字符的时候,虽然没输入进去,但是value.length已经把长度加上去了,显示为61。
1 回复
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)