开发异常处理
- ios input readonly失效(点击的时候会有光标出现)/禁止输入法弹出问题
1.$("#appDateTime").focus(function(){ document.activeElement.blur(); }); 2.onselectstart="return false;" 3.-webkit-user-select:none 苹果端用1,4,解决不了弹出输入框问题的时候用5, 4.ime-mode:disabled; 5.-webkit-touch-callout:none