苹果手机中运行的页面,在iframe 中 ,手指点击input框,自动弹出键盘后,输入几个文字,然后手指再点击一下input框之后,再在键盘里敲字母,就无法在input框显示所敲入的内容了。

解决方法:
input组件接管keydown事件 获取光

var el = $('#input');
el.on('keydown', function() {
  window.focus()
  el.focus()
});

参考地址:https://stackoverflow.com/questions/13124340/cant-type-into-html-input-fields-on-ios-after-clicking-twice