12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- </head>
- <body>
- 这是一个空页面
- <button id="btn">点击我</button>
- </body>
- <!--inside <head></head>-->
- <script type='text/javascript'>
- var Countly = Countly || {};
- Countly.q = Countly.q || [];
- // server credentials
- Countly.app_key = "YOUR_APP_KEY";
- Countly.url = "https://yourdomain.com";
- // Track sessions and page views automatically (recommended)
- Countly.q.push(['track_sessions']);
- Countly.q.push(['track_pageview']);
- // Load Countly script asynchronously
- (function() {
- var cly = document.createElement('script'); cly.type = 'text/javascript';
- cly.async = true;
- cly.src = 'https://cdn.jsdelivr.net/npm/countly-sdk-web@latest/lib/countly.min.js';
- cly.onload = function(){Countly.init()};
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(cly, s);
- })();
- </script>
- </html>
|