Skip to content
首页
视频素材
模版
音乐音效
首页
视频素材
模版
音乐音效
Search
上传
登录/注册
Sorry, trouble retrieving order receipt.
Sorry, trouble retrieving order receipt.
添加微信
// 使用事件委托处理动态生成的按钮 document.addEventListener('click', function(e) { const button = e.target.closest('[data-download-id]'); if(!button) return; const downloadId = button.dataset.downloadId; console.log('捕获的下载ID:', downloadId); // 调试输出 // Elementor弹窗触发 if(window.ElementorProFrontend?.modules?.popup) { ElementorProFrontend.modules.popup.showPopup({ id: 5447, settings: { edd_download_id: downloadId, _cachebuster: Date.now() // 防止缓存 } }); } });