MediaWiki:Common.js:修订间差异

来自ECUST_WIKI
跳到导航 跳到搜索
(创建页面,内容为“→‎这里的任何JavaScript将为所有用户在每次页面加载时加载。:​ $(document).ready(function() { // 在页面底部添加自定义HTML内容 var customHTML = '<p>ECUST Computer Information Communication & VR Club<br/>' + '<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/registerSyste…”
 
无编辑摘要
标签手工回退
 
(未显示2个用户的29个中间版本)
第1行: 第1行:
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
$(document).ready(function() {
$(document).ready(function() {
     // 在页面底部添加自定义HTML内容
     // 添加备案信息
     var customHTML = '<p>ECUST Computer Information Communication & VR Club<br/>' +
     var beianInfo = '<div class="beian-info" style="text-align:center;"><p><a href="https://beian.miit.gov.cn/" target="_blank">沪ICP备2021021416号-2</a></p></div>';
                    '<a href="https://beian.miit.gov.cn/" target="_blank">苏ICP备2023000758号-2</a> | ' +
    if (window.location.hostname === "wiki.cic.cab") {
                    '<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;">' +
        $('body').append(beianInfo);
                    '<img src="https://www.beian.gov.cn/img/ghs.png" style="float:left;"/>沪公网安备31012102000135号</a></p>';
    }
    // 另一备案信息
    var beianInfoEcustvr = '<div class="beian-info" style="text-align:center;"><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>';
    if (window.location.hostname === "wiki.ecustvr.top") {
        $('body').append(beianInfoEcustvr);
    }


     // 添加到页面底部
     // 添加 CSS 样式
     $('body').append(customHTML);
     $('.beian-info').css({
        'font-size': 'small', // 设置字体大小为小
        'text-align': 'center', // 使文本居中
        'margin-top': '10px', // 可选:添加顶部边距以改善布局
        'margin-bottom': '10px' // 可选:添加底部边距以改善布局
    });
});
});

2024年9月6日 (五) 16:39的最新版本

$(document).ready(function() {
    // 添加备案信息
    var beianInfo = '<div class="beian-info" style="text-align:center;"><p><a href="https://beian.miit.gov.cn/" target="_blank">沪ICP备2021021416号-2</a></p></div>';
    if (window.location.hostname === "wiki.cic.cab") {
        $('body').append(beianInfo);
    }
    // 另一备案信息
    var beianInfoEcustvr = '<div class="beian-info" style="text-align:center;"><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>';
    if (window.location.hostname === "wiki.ecustvr.top") {
        $('body').append(beianInfoEcustvr);
    }

    // 添加 CSS 样式
    $('.beian-info').css({
        'font-size': 'small', // 设置字体大小为小
        'text-align': 'center', // 使文本居中
        'margin-top': '10px', // 可选:添加顶部边距以改善布局
        'margin-bottom': '10px' // 可选:添加底部边距以改善布局
    });
});