8_事件.html 746 B

123456789101112131415161718192021222324252627282930313233
  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. 123123123
  11. <script>
  12. // document.ontouchstart = function(){
  13. // console.log('start')
  14. // }
  15. // document.ontouchmove = function(){
  16. // console.log('move')
  17. // }
  18. // document.ontouchend = function(){
  19. // console.log('end')
  20. // }
  21. document.onclick = function(){
  22. console.log('click')
  23. }
  24. document.ontouchstart = function(){
  25. console.log('start')
  26. }
  27. /* click 事件 有300ms延迟时间 */
  28. </script>
  29. </body>
  30. </html>