258
个编辑
标签:清空 回退 |
无编辑摘要 |
||
第1行: | 第1行: | ||
// 检查当前域名是否为 "wiki.cic.cab" | |||
if (window.location.hostname === "wiki.cic.cab") { | |||
// 在页面底部添加备案信息 | |||
$(document).ready(function() { | |||
var beianInfo = '<div class="beian-info" style="text-align: center; padding: 10px; background-color: #f5f5f5;">沪ICP备2021021416号-2</div>'; | |||
$('body').append(beianInfo); | |||
}); | |||
} | |||
// 检查当前域名是否为 "wiki.ecustvr.top" | |||
if (window.location.hostname === "wiki.ecustvr.top") { | |||
// 在页面底部添加备案信息 | |||
$(document).ready(function() { | |||
var beianInfo = '<div class="beian-info"><p><a href="https://beian.miit.gov.cn/" target="_blank">苏ICP备2023000758号-2</a> | ' + | |||
'<a class="nav-link" target="_blank" href="https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31012102000135" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">' + | |||
'<img src="https://www.beian.gov.cn/img/ghs.png" style="float:left;"/>沪公网安备31012102000135号</a></p></div>'; | |||
$('body').append(beianInfo); | |||
}); | |||
} | |||
// 添加 CSS 样式 | |||
$(document).ready(function() { | |||
$('.beian-info').css('font-size', 'small'); // 设置字体大小为小 | |||
}); |