7_事件.html 624 B

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