我正在修改 js 中的 touchevents
。我在 eclipse 的 logcat 中遇到过这个错误。
document.getElementById("squareBracket").
addEventListener("touchmove", touchHandler, false);
document.getElementById("squareBracket").
addEventListener("touchend", touchHandler, false);
function touchHandler(e) {
if (e.type == "touchstart") {
alert("You touched the screen!");
} else if (e.type == "touchmove") {
// alert(e.changedTouches[0].pageX);
// alert(e.changedTouches[0].pageY);
} else if (e.type == "touchend" || e.type == "touchcancel") {
alert('X :' + e.targetTouches[0].pageX);
alert('Y :' + e.targetTouches[0].pageY);
}
}
如果我在 touchmove
中删除 if
中的注释,坐标弹出。但是,如果它被评论,我的 logcat 中的错误就会出现。
我是一名优秀的程序员,十分优秀!