7_事件.html 591 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. 123123123131231
  11. <script>
  12. document.onclick = function(){
  13. console.log('click')
  14. }
  15. document.ontouchstart = function(){
  16. console.log('touch-start')
  17. }
  18. document.ontouchmove = function(){
  19. console.log('touch-move')
  20. }
  21. document.ontouchend = function(){
  22. console.log('touch-end')
  23. }
  24. </script>
  25. </body>
  26. </html>