h5点击input关闭输入法,不显示输入法代码
只需要在点击的input事件中添加一下代码即可:
$("#input-obj").focus(function(){ document.activeElement.blur(); });
这段代码就是关键
document.activeElement.blur();
Dcr163的博客
http://dcr163.cn/245.html(转载时请注明本文出处及文章链接)
只需要在点击的input事件中添加一下代码即可:
$("#input-obj").focus(function(){ document.activeElement.blur(); });
这段代码就是关键
document.activeElement.blur();
Dcr163的博客
http://dcr163.cn/245.html(转载时请注明本文出处及文章链接)