1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style>
- button {
- width: 100px;
- height: 30px;
- background-color: #4CAF50;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- }
- </style>
- </head>
- <body>
- 谷歌埋点Demo - js
- <br>
- <strong>埋点统计数据会有延迟,请耐心等待</strong>
- <button id="btn" onclick="handleClick()">点击我</button>
- </body>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-8HEB2QHV86"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'G-8HEB2QHV86');
- gtag('event', 'pageview', {
- page_path: '/',
- value: "js:访问页面"
- });
- function handleClick() {
- gtag('event', 'click', {
- event_category: 'test',
- event_label: 'click',
- value: 'js:点击按钮'
- });
- }
- </script>
- </html>
|