有一個iphone 網頁應用,使用javascript來 禁用 滾動或者選擇:
document.ontouchstart = function(e){
e.preventDefault();
}
我發現代碼同時 禁用 了輸入表單:
<input type="text" />
在這裡點擊的時候,鍵盤彈不出來。
document.ontouchstart = function(e){
if(e.target.type == 'text'){
}
else {
e.preventDefault();
}
}
檢測目標事件是不是文本輸入