原创声明:本文为作者原创,未经允许不得转载,经授权转载需注明作者和出处
如题,我想将一个textarea固定在屏幕底部,文本框的位置不要随屏幕上下滚动而变化。
我现在的代码如下,但并没有实现该效果,请各位指点:
/使输入框一直在底部/
Css
.shuru{
position:fixed;
height:100rpx;
width: 100%;
text-align:left;
background-color:#efefef;
border-top:1px solid #CCC;
bottom:0rpx;
_position:absolute;
}
WXML
<view class="shuru">
<textarea bindblur="bindTextAreaBlur"
auto-height placeholder="在这里输入您的评论"/>
</view>
以上代码在开发工具里面是没问题,但是在手机上预览就不行,屏幕一滚动,文本框就跟着滚动了…