我如何在我的 Android 手机上连续运行它,就像它在我的 PC 上运行的方式一样?目前它没有:
<!DOCTYPE html>
<html>
<head>
<script>
(function() {
document.onmousemove = handleMove; // for PC
document.ontouchmove = handleMove; // for Mobile
function handleMove(event) {
document.getElementById('myDiv').innerHTML = event.pageX + "/" + event.pageY;
}
})();
</script>
</head>
<body>
<div id="myDiv"></div>
</body>
</html>