main.html 918 B

12345678910111213141516171819202122232425262728293031323334
  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">点击我</button>
  10. </body>
  11. <!--inside <head></head>-->
  12. <script type='text/javascript'>
  13. var Countly = Countly || {};
  14. Countly.q = Countly.q || [];
  15. // server credentials
  16. Countly.app_key = "YOUR_APP_KEY";
  17. Countly.url = "https://yourdomain.com";
  18. // Track sessions and page views automatically (recommended)
  19. Countly.q.push(['track_sessions']);
  20. Countly.q.push(['track_pageview']);
  21. // Load Countly script asynchronously
  22. (function() {
  23. var cly = document.createElement('script'); cly.type = 'text/javascript';
  24. cly.async = true;
  25. cly.src = 'https://cdn.jsdelivr.net/npm/countly-sdk-web@latest/lib/countly.min.js';
  26. cly.onload = function(){Countly.init()};
  27. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(cly, s);
  28. })();
  29. </script>
  30. </html>