textarea无法弹起输入框
你想反馈一个 Bug 还是 提一个需求?
<view class=‘fixed’ bindtap=‘changeShow’>
<view>
<image src=‘写评论.png’></image>
写评论
</view>
<text>评论</text>
</view>
<view class=‘fixed-input’ wx:if=’{{fixedInputShow}}’>
<view>
<view>
<text bindtap=‘cancelComment’>取消</text>
<text bindtap=‘confirmComment’>发布</text>
</view>
<textarea maxlength=’-1’ value=’{{comments}}’ cursor-spacing=‘80’ fixed=“true” bindinput=‘writecomment’ auto-focus=’{{focus}}’>
</textarea>
</view>
</view>
刚开始评论框是隐藏的,当点击写评论时,弹出评论框,但是textarea无法弹出键盘