input框微信Web阻止软键盘弹出。

readonly标签,及另一种兼容IE写法;

 

  1. <script>  
  2.   // 样式 style="ime-mode:disabled" 禁止中文输入  
  3. function noPermitInput(e){    
  4.        var evt = window.event || e ;  
  5.         if(isIE()){  
  6.             evt.returnValue=false; //ie 禁止键盘输入  
  7.         }else{  
  8.             evt.preventDefault(); //fire fox 禁止键盘输入  
  9.         }     
  10. }  
  11. function isIE() {  
  12.     if (window.navigator.userAgent.toLowerCase().indexOf("msie") >= 1)  
  13.         return true;  
  14.     else  
  15.         return false;  
  16. }   
  17.   script>  
  18.  HEAD>  
  19.  <BODY>  
  20.   <input type="text" value=""   style="ime-mode:disabled" onkeypress="noPermitInput(event)" >  
  21.  BODY>

 

 

 

你可能感兴趣的:(前端功能)