1***@qq.com
1***@qq.com
  • 发布:2024-04-13 15:28
  • 更新:2024-04-15 11:08
  • 阅读:166

导航栏searchinput 搜索框再微信中不能点击

分类:uni-app

"type": "transparent",
"searchInput": {
"backgroundColor": "rgba(231, 231, 231,.7)",
"borderRadius": "16px",
"placeholder": "请输入关键词",
"disabled": true,
"placeholderColor": "#606266"
},

onNavigationBarSearchInputClicked: async function(e) {
uni.navigateTo({
// url: /pages/search/hotsearch
url: /pages/search/HM-search
})
},
onNavigationBarSearchInputChanged: function(val) {
(val);
},

再微信还有手机部分浏览器中也是不行点了没反应

2024-04-13 15:28 负责人:无 分享
已邀请:
JXWang

JXWang

问题已确认,原因是浏览器设置 disabled 的 input 元素不支持点击事件,未来版本将会修复这个问题,暂时性解决方案:设置以下全局css样式,可在 App.vue 的 style 里设置

.uni-input-input:disabled {
pointer-events: none;
}

要回复问题请先登录注册