Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 javascript 编写一个自定义“组件”,而我不希望本机键盘在专注于输入元素时弹出。有人可以解释最好的方法吗?谢谢!
我想到了。我这样做的原因是 HTML5 的“日期”输入类型非常错误(在 Android 上),我们的用户无法接受。因此,我没有使用本地日期,而是将其更改为常规输入。然后在“焦点”事件中我停止传播并立即模糊它:IE:
focus: function(el, evt) { evt.stopPropagation(); this.blur(); openCustomComponent(); }