可能重複:
How to bind 'touchstart' and 'click' events but not respond to both?HTML按鈕不能在平板電腦上工作
我有一個奇怪的問題,其中一個html按鈕不會只有平板電腦的。適用於所有瀏覽器甚至移動設備,但不適用於實際的平板電腦。
我以前用過按鈕沒有問題,也看不出有什麼不同。我的代碼:
<button type="button" class="addwebcam">Add Webcam</button>
jQuery('.addwebcam').click(function(e) {
jQuery('#cameraformwebcam').show(); //opens up a new form
jQuery('.addwebcam').hide(); //now hide the button
});
我也有其他的按鍵做不同的事情,他們都是一樣的。按下平板電腦上的按鈕只會突出顯示它。我怎樣才能調試呢?我試過用戶代理,但他們不幫助我進行調試,因爲問題在於點擊該實際設備上的按鈕。
沿着這是值得一讀:http://stackoverflow.com/questions/8939136/javascript-events-are-not-working-in-tablet-pc – 3dgoo