<template>
<view class="content">
<input class="input" placeholder="请输入" />
</template>
<script>
export default {
onLoad() {
// 全局键盘高度监听事件
uni.onKeyboardHeightChange(res => this.showToast(uni.onKeyboardHeightChange: ${res.height}
))
},
methods: {
showToast(title) {
uni.showToast({
title,
icon: 'none',
})
},
}
}
</script>
NightMing
解决了吗
2024-11-29 09:24
啾啾 (作者)
回复 NightMing: 没有,一直监听不到
2024-11-29 10:06