JavaScript中的移動觸摸事件的語法是什麼?我想:如何使用純JavaScript的手機觸摸事件?
window.document.body.ontouchstart = function() { alert(); }
和
window.document.body.touchstart = function() { alert(); }
它不給任何錯誤。在觸摸網頁時沒有任何反應。這似乎是addEventListener
是要走的路。但爲什麼window.document.body.ontouchstart
不直接工作?
爲什麼不'window.document.body.ontouchstart'工作? – user31782
@ user31782你需要'addEventListener()'方法,所以定位body元素然後附加事件。 'document.getElementsByTagName( 「正文」)[0] - 閱讀進度 - ( 'touchstart' ....' –