选中input框禁止键盘弹出

有三种方式:

一、

<input type="text" readonly="readonly" />

二、

<input type="text" onfocus="this.blur()" />

三、

<input type="text" id="box" />
$("#box").focus(function(){
                  document.activeElement.blur();
              })
原文地址:https://www.cnblogs.com/myprogramer/p/10484623.html