此处公告通常对读者进行申明或对该WIKI某些规则进行公告,请在确认后修改本通告
本WIKI编辑权限开放,欢迎收藏起来防止迷路,也希望有爱的小伙伴和我们一起编辑哟~
编辑帮助:目录BWIKI反馈留言板

全站通知:

开服表样式一

阅读

    

2025-09-15更新

    

最新编辑:秦寿不寿

阅读:

  

更新日期:2025-09-15

  

最新编辑:秦寿不寿

来自三国志幻想大陆WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索
页面贡献者 :
秦寿不寿
 <button class="bili-btn bili-btn-normal" style="margin: 0 5px; padding: 2px 8px;" onclick="changeMonth(-1)">◀</button>
 2023年11月
 <button class="bili-btn bili-btn-normal" style="margin: 0 5px; padding: 2px 8px;" onclick="changeMonth(1)">▶</button>
1
已开服
2
已开服
3
已开服
4
已开服
5
已开服
6
已开服
7
已开服
8
已开服
9
已开服
10
已开服
11
已开服
12
已开服
13
已开服
14
已开服
15
维护中
16
已开服
17
已开服
18
已开服
19
已开服
20
已开服
21
已开服
22
已开服
23
已开服
24
新服
25
已开服
26
已开服
27
已开服
28
已开服
29
已开服
30
已开服
  已开服 
  维护中 
  新服开启

备注1:开服信息实时更新,新服开启前1小时会更新提示

备注2:维护时长通常为2-4小时,具体以官方公告为准

<script> // 月份切换核心逻辑 var currentDate = new Date(); function updateDisplay() {

 var year = currentDate.getFullYear();
 var month = currentDate.getMonth() + 1;
 document.getElementById('current-year-month').textContent = year + '年' + month + '月';

} function changeMonth(direction) {

 currentDate.setMonth(currentDate.getMonth() + direction);
 updateDisplay();
 // 如需加载新月份数据,可在此处补充AJAX请求逻辑(需符合BWIKI接口规范)

} // 初始化显示 updateDisplay(); </script>