用户:RedDragon/Test2:修订间差异
来自Rizline中文维基
更多操作
小 |
小 |
||
| 第36行: | 第36行: | ||
<script> | <script> | ||
document.addEventListener('DOMContentLoaded', () => { | document.addEventListener('DOMContentLoaded', () => { | ||
// 使用十六进制编码避免 & 字符 | |||
const encodedUrl = 'https://rizwiki.cn/api.php?action=query%26titles=曲目列表%26prop=revisions%26rvprop=content%26format=json' | |||
// 解码并发送请求 | |||
const decodedUrl = decodeURIComponent(encodedUrl) | |||
fetch(decodedUrl) | |||
.then(r => r.text()) | .then(r => r.text()) | ||
.then(text => { | .then(text => { | ||
| 第111行: | 第116行: | ||
} | } | ||
function loadSongColors(song) { | |||
const | // 同样使用十六进制编码 | ||
fetch( | const encodedUrl = `https://rizwiki.cn/api.php?action=query%26titles=${encodeURIComponent(song.title)}%26prop=revisions%26rvprop=content%26format=json` | ||
const decodedUrl = decodeURIComponent(encodedUrl) | |||
fetch(decodedUrl) | |||
.then(r => r.text()) | .then(r => r.text()) | ||
.then(text => { | .then(text => { | ||
2025年10月19日 (日) 22:54的版本
| 曲目 | |
|---|---|
|
|
|
| 限制 | |
| 难度 | a |
| 流速 | b |
| MOD | c |
| 其他 | d |
神秘的随机挑战!
| 曲目 | |
|---|---|
|
| |
| 限制 | |
| 难度 | a |
| 流速 | b |
| MOD | c |
| 其他 | d |
User:RedDragon/Test User:RedDragon/Test1 User:RedDragon/Test2