选中input框禁止键盘弹出

有三种方式:

一、

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

二、

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

三、

<input type="text" id="box" />
$("#box").focus(function(){
                  document.activeElement.blur();
              })

 

posted @ 2019-03-06 17:26  有深度  阅读(7323)  评论(0编辑  收藏  举报