uniapp 的uni.showModal 禁止回车触发确定
时间: 2023-09-18 16:09:56 浏览: 120
你可以通过监听键盘事件来禁止回车触发确定按钮。在uniapp中,你可以使用`@confirm`事件来监听确认按钮的点击事件,并在该事件中阻止默认行为。以下是一个示例代码:
```html
<template>
<view>
<button @click="showModal">显示弹窗</button>
</view>
</template>
<script>
export default {
methods: {
showModal() {
uni.showModal({
title: '提示',
content: '这是一个弹窗',
success: (res) => {
if (res.confirm) {
console.log('用户点击了确定按钮');
} else if (res.cancel) {
console.log('用户点击了取消按钮');
}
}
});
// 监听确认按钮的点击事件
uni.onConfirm((res) => {
uni.hideModal(); // 关闭弹窗
res.preventDefault(); // 阻止默认行为
});
}
}
}
</script>
```
在上面的代码中,我们使用`uni.onConfirm`方法来监听确认按钮的点击事件。当用户点击确认按钮时,我们先关闭弹窗,然后调用`res.preventDefault()`方法来阻止默认行为,即禁止回车触发确定按钮。
请注意,在每次显示弹窗前都要重新绑定`uni.onConfirm`事件,以确保正确监听确认按钮的点击事件。
希望这可以帮助到你!如果有任何其他问题,请随时问我。
阅读全文