娜斯佳和她的父亲们

娜斯佳和她的父亲们

  • 主演:叶莲娜·舍甫琴科 Nikolay Fomenko 瓦连京·佳夫特 列夫·杜罗夫 奥列格·塔巴科夫 米沙·菲利普丘克 维克多·巴甫洛夫 Fyodor Valikov Lyudmila Davydova Tatyana Rogozina 弗拉基米尔·马什科夫 
  • 导演:弗拉基米尔·马什科夫 
  • 年份:1997
返回顶部
// 自动监听插入的 或 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 });