做了一个微信界面,有input['select']控件,input['text']控件,快速点击select控件的时候,会发生焦点跳到input['text']控件上并且弹出输入键盘的BUG;解决方案如下:
$('#my-select').on('touchstart',function(e) {
e.preventDefault();
});
做了一个微信界面,有input['select']控件,input['text']控件,快速点击select控件的时候,会发生焦点跳到input['text']控件上并且弹出输入键盘的BUG;解决方案如下:
$('#my-select').on('touchstart',function(e) {
e.preventDefault();
});