1. 程式人生 > >移動端輸入框禁止軟鍵盤彈出

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

三種方法:

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:返回文件中當前獲得焦點的元素。