1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- </head>
- <body>
- 这是一个空页面
- <button id="btn" data-track>点击我</button>
- </body>
- <script src="buriedPiont.js"></script>
- <script>
- const tracker = new Tracker({
- baseUrl: 'http://192.168.3.9:3000/api/log',
- heartbeatInterval: 5000,
- });
- tracker.init();
- </script>
- </html>
|