12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- </head>
- <body>
- 这是一个空页面
- <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>
|