MediaWiki:Common.js:修订间差异
跳到导航
跳到搜索
(创建页面,内容为“→这里的任何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…”) |
(没有差异)
|
2023年12月5日 (二) 04:42的版本
/* 这里的任何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/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>';
// 添加到页面底部
$('body').append(customHTML);
});