MediaWiki:Common.js:修订间差异

来自ECUST_WIKI
跳到导航 跳到搜索
无编辑摘要
标签已被回退
无编辑摘要
标签手工回退
第21行: 第21行:
// 添加 CSS 样式
// 添加 CSS 样式
$(document).ready(function() {
$(document).ready(function() {
    $('<style>.beian-info { text-align: center; display: inline-block; vertical-align: middle; }</style>').appendTo('head');
     $('.beian-info').css('font-size', 'small'); // 设置字体大小为小
     $('.beian-info').css('font-size', 'small'); // 设置字体大小为小
});
});

2024年3月6日 (三) 20:34的版本

// 检查当前域名是否为 "wiki.cic.cab"
if (window.location.hostname === "wiki.cic.cab") {
    // 在页面底部添加备案信息
    $(document).ready(function() {
        var beianInfo = '<div class="beian-info"><p><a href="https://beian.miit.gov.cn/" target="_blank">沪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'); // 设置字体大小为小
});