textarea组件在IOS有问题
textarea固定定位在低端,即类似贴吧那种评论输入框。当获取焦点拉起键盘时,IOS的状态栏和顶部tab会被拉下来。
<textarea type='text' focus='{{true}}' maxlength='200' auto-height='{{true}}' fixed='{{true}}' bindinput="followValueInput"> |
为固定定位
{ position: fixed; bottom: 0; left: 0; right: 0;} |
通过修改textarea属性进行了各种尝试。
show-confirm-bar或者adjust-position设为false会出现输入框被键盘挡住的情况。
希望尽快解决。
