-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom.html
29 lines (29 loc) · 1.27 KB
/
random.html
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
<body onload="javascript:dogo();">
<script>
function dogo(){
var urls=[
"https://blog.luckyeason.tk/update/index.html",
"https://blog.luckyeason.tk/messageboard/index.html",
"https://blog.luckyeason.tk/zaobao/index.html",
"https://blog.luckyeason.tk/tools/index.html",
"https://blog.luckyeason.tk/tags/index.html",
"https://blog.luckyeason.tk/speaks/index.html",
"https://blog.luckyeason.tk/package.json",
"https://blog.luckyeason.tk/othersite/index.html",
"https://blog.luckyeason.tk/muyu/index.html",
"https://blog.luckyeason.tk/musics/index.html",
"https://blog.luckyeason.tk/manifest.json",
"https://blog.luckyeason.tk/links/index.html",
"https://blog.luckyeason.tk/license/index.html",
"https://blog.luckyeason.tk/kongtiao/index.html",
"https://blog.luckyeason.tk/fontawesome/index.html",
"https://blog.luckyeason.tk/fcircle/index.html",
"https://blog.luckyeason.tk/categories/index.html",
"https://blog.luckyeason.tk/bangumis/index.html",
"https://blog.luckyeason.tk/about/index.html",
"https://blog.luckyeason.tk/posts/4a17b156/",
];
n = Math.floor(Math.random()*urls.length);
location.href= urls[n];
}
</script>