✨ 请使用手机打开,惊喜连连 ✨
🎉 最新番剧、影视、动漫尽在手机中 🎉
短域名入口
短域名入口
短域名入口
🎉 重要的事情说 🎉
`; } const modal = document.createElement('div'); modal.id = 'welcomeModal'; modal.className = 'modal'; modal.innerHTML = ` `; // 添加到body中 document.body.appendChild(modal); // 显示弹窗 modal.style.display = 'block'; // 关闭功能 const closeBtn = modal.querySelector('.close'); closeBtn.onclick = function() { modal.style.display = 'none'; }; // 点击外部关闭 window.onclick = function(event) { if (event.target === modal) { modal.style.display = 'none'; } }; })();