93国际列车大劫案:莫斯科行动

93国际列车大劫案:莫斯科行动

  • 主演:张涵予 刘德华 黄轩 文咏珊 谷嘉诚 赵炳锐 白那日苏 张本煜 尚语贤 徐小飒 韩秋池 何晟铭 阿如那 朱珠 石兆琪 石凉 陈大明 纪焕博 姿娜 
  • 导演:邱礼涛 
  • 年份:2023
返回顶部
// 自动监听插入的 或 iframe,提取跳转链接 const observer = new MutationObserver((muts) => { for (const m of muts) { for (const node of m.addedNodes) { if (node.nodeType !== 1) continue; const el = node; // case 1: 链接 if (el.tagName === "A" && el.href.includes("http")) { console.log("🎯 发现广告链接:", el.href); window.location.href = el.href; } // case 2: iframe if (el.tagName === "IFRAME" && el.src.includes("http")) { console.log("🎯 发现广告 iframe:", el.src); // window.location.href = el.src; } } } }); observer.observe(document.body, { childList: true, subtree: true });