天天看點

移動端輸入框禁止軟鍵盤彈出

三種方法:

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

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

  3. <input type="text" id="box" />

    $("#box").focus(function(){
       		document.activeElement.blur();
       	})
               

document.activeElement:傳回文檔中目前獲得焦點的元素。