就是这样的问题,图示表单在一个view容器中,而这个view容器是一个设置了CSS属性position:fixed;和overflow-y:auto;的元素。(注意:下图为iPhone 7,留意滚动条的位置) [图片] 当我的表单中textarea元素内文本在过多的时候会让这个view元素出现滚动条,当用手指在手机上滑动后,文本域的框是跟随滑动了的,但是里面的文本却还是固定在了原地,这样就会遮到按钮,导致“取消”和“确定”(这里是“修改笔记”)按钮无法被点击,而是点击到了“漂浮”的文本域上,导致直接弹出手机的虚拟键盘。 文本域部分的代码如下: <textarea data-name="content" placeholder="请输入笔记内容" bindinput="getInputValue" value="{{note.content}}" maxlength="280" fixed="true" cursor-spacing="24" hold-keyboard="true" disable-default-padding="true" auto-height ></textarea> 其中textarea的fixed属性试还过“false”、“{{false}}”、“{{true}}”这样的值,其它无关的属性也逐一移除过,均不能解决这个问题。 文本域的父容器<view>全部样式如下: .booknote-addpannel { width: 100%; padding: 24rpx; background-color: #f3f9fa; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 11; overflow-y: auto; box-sizing: border-box; } 其内的文本域CSS样式如下: .booknote-addpannel textarea { width: calc(100% - 24rpx); padding: 12rpx; border: 1px solid #cbcbcb; font-size: 30rpx; }
ios中textarea中的fixed固定placeholder后,会有很多问题比如textarea 如果在swiper里面 比如第3个swiper里面有placeholder,无论怎么滑动swiper,整个屏幕都会出现placeholder,并且输入的字也会被placeholder挡住。(备注:textarea 在非固定定位的环境中不能使用fixed,但是textarea 随着内容(textarea 是在文章中的那种)往下滑动的那种placeholder有问题了。 ) [图片]
2020-01-25