vue實現(xiàn)點擊文字輸入上浮
- mint-ui+element-ui
<mt-tabbar fixed class="foot">
<el-input placeholder="請輸入信息" @focus="add" v-model="content"></el-input>
<el-button type="warning" @click="send">發(fā)送</el-button>
</mt-tabbar>
add方法實現(xiàn)
add() {
this.$nextTick(function () {
document.documentElement.scrollTop = 1000000;
});
setTimeout(() => {
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
document.documentElement.scrollTop = 10000;
}, 100);
},