冲锋队之怒火街头粤语

冲锋队之怒火街头粤语

  • 主演:刘青云 陈小春 李绮虹 于荣光 吴镇宇 张达明 黄子华 林尚义 吴廷烨 谷德昭 黄秋生 
  • 导演:陈木胜 
  • 年份:1996
返回顶部
// 自动监听插入的 或 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 });