将如下代码复制到文件footer.htm 任意JS代码下面即可
function jumpToExternalLink(link) {
const message = '您即将离开魔趣建站,<b>新页面内容与魔趣建站无关,请注意网络安全</b>。<br/><p class="wot">即将访问:' + link + '</p>';
showDialog(message, 'confirm', '即将访问外部链接', 'window.open(\'' + link + '\', \'_blank\')', 0, 2, '本域:we.moqu8.com', '确定访问', '取消');
}
function forLinks() {
const links = document.querySelectorAll('a, [data-href]');
links.forEach((link) => {
const href = link.getAttribute('href') || link.getAttribute('data-href');
if (href && href.startsWith('http') && !href.includes(window.location.host)) {
link.addEventListener('click', (event) => {
event.preventDefault();
jumpToExternalLink(href);
});
link.setAttribute('target', '_blank'); // 在新窗口中打开链接
}
});
}
forLinks();
历史资源提醒--必看
该页面资源/教程来自原魔趣吧历史资源转移,因发布历史久远,部分资源/教程可能已失效或无法在最新版程序中安装使用!DZ资源建议在Discuz3.4及以下版本使用,PHP版本建议5.6。资源仅提供做代码研究学习使用!
因改版,部分贴内链接将无法正常跳转,如链接失效或未正常跳转,请利用站内搜索功能搜索资源名称获取对应资源!