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.
我的 html 中有一个文本区域。当用户点击它时,键盘会正确弹出。按下键盘关闭按钮后,在点击屏幕上的其他位置时,键盘会不断出现。有没有办法让键盘只出现在输入水龙头上?
下面的 jquery 代码可以解决问题:
$(window).bind('touchstart', function (e) { if (!$(e.target).is(':input')) { $(':input').blur(); } });
基本上,我抓住每一个水龙头;如果目标不是输入字段,则模糊所有输入字段,这实际上隐藏了愚蠢的键盘。