main.html 387 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. 这是一个空页面
  9. <button id="btn" data-track>点击我</button>
  10. </body>
  11. <script src="buriedPiont.js"></script>
  12. <script>
  13. const tracker = new Tracker({
  14. baseUrl: 'http://192.168.3.9:3000/api/log',
  15. heartbeatInterval: 5000,
  16. });
  17. tracker.init();
  18. </script>
  19. </html>