W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
touchmove事件的全局事件處理程序。
注意:這個屬性已經(jīng)不被正式標準化。它在Touch Events – Level 2 Editor's Draft規(guī)范中指定,不在Touch Events Recommendation中。這個屬性沒有被廣泛實現(xiàn)。
var moveHandler = someElement.ontouchmove;
moveHandler
someElement
元素的touchmove事件處理程序。此示例顯示了使用ontouchmove設置元素的touchmove事件處理程序的兩種方法。
<html>
<script>
function moveTouch(ev) {
// Process the event
}
function init() {
var el=document.getElementById("target1");
el.ontouchmove = moveTouch;
}
</script>
<body onload="init();">
<div id="target1"> Touch me ... </div>
<div id="target2" ontouchmove="moveTouch(event)"> Touch me ... </div>
</body>
</html>
規(guī)范 | 狀態(tài) | 注釋 |
---|---|---|
Touch Events – Level 2 | Editor's Draft | 非穩(wěn)定版本 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: