touch触摸事件
Tutorial: DOM操作
Category: JS
Published: 2026-04-07 13:58:26
Views: 20
Likes: 0
Comments: 0
touch 触摸事件
<!DOCTYPE html>
<html lang="en">
<head>
<style>
div {
width: 100px;
height: 100px;
background-color: pink;
}
</style>
</head>
<body>
<div></div>
<script>
var div = document.querySelector("div");
div.addEventListener("touchstart", function () {
console.log("我摸了你");
});
div.addEventListener("touchmove", function () {
console.log("我继续摸");
});
div.addEventListener("touchend", function () {
console.log("轻轻的我走了");
});
</script>
</body>
</html>