document.addEventListener('DOMContentLoaded', function() { // 获取所有聊天按钮 const chatButtons = document.querySelectorAll('.chat-button'); // 遍历每个聊天按钮并添加点击事件监听器 chatButtons.forEach(function(button) { button.addEventListener('click', function() { // 触发 Google Ads 转化事件 gtag('event', 'conversion', { 'send_to': 'AW-16743680964/s-GPCOXP2OkZEMSXgbA-' // 用你的 Google 广告转化 ID 替换 }); }); }); });