7_事件.html 634 B

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