|
|
第1行: |
第1行: |
| // 检查当前域名是否为 "wiki.cic.cab"
| |
| if (window.location.hostname === "wiki.cic.cab") {
| |
| // 在页面底部添加备案信息
| |
| $(document).ready(function() {
| |
| $('body').append('<div style="padding: 10px; background-color: #f5f5f5;">沪ICP备2021021416号-2</div>');
| |
| });
| |
| }
| |
|
| |
|
| // 检查当前域名是否为 "wiki.ecustvr.top"
| |
| if (window.location.hostname === "wiki.ecustvr.top") {
| |
| // 在页面底部添加备案信息
| |
| $(document).ready(function() {
| |
| var beianInfo = '<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="text-decoration:none;height:20px;line-height:20px;">' +
| |
| '<img src="https://www.beian.gov.cn/img/ghs.png" style="float:left;"/>沪公网安备31012102000135号</a></p>';
| |
| $('body').append(beianInfo);
| |
| });
| |
| }
| |