创建vue页面A,创建web-view标签。引入html。html代码如下
<div style="width: 100%;height: calc(100% - 50px);overflow-y: scroll;overflow-x: hidden;background-color: #0062CC;"></div>
<div style="position: fixed;bottom: 0;height: 50px;background-color: #FFFFFF;">
<textarea rows="1" cols="20" placeholder="写评论" style="position: absolute;" ></textarea>
</div>
创建vue页面B,在底部创建多行文本框,代码如下
.vidlay-bottom{
position: fixed;
bottom: 0;
width: 100%;height: 100upx;box-sizing: border-box;padding-left: 40upx;background-color: #FFFFFF;
}
.cont-text{
width: 350upx;display: inline-block;height: 60upx;line-height: 60upx;
}
<view class="videoplay-bottom">
<textarea
ref="infos"
:cursor-spacing="10"
:adjust-position="true"
v-model="infos"
class="cont-text"
placeholder="写评论">
</textarea>
</view>
先进入页面A点击多行文本框
在进入页面B点击多行文本框
再进入页面A点击多行文本框