mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-24 04:03:11 +08:00
13 lines
400 B
JavaScript
13 lines
400 B
JavaScript
var data = [
|
|
"富强民主闻名和谐, 自由平等公正法治, 爱国敬业诚信友善",
|
|
"解放思想, 实事求是, 与时俱进",
|
|
|
|
"You are not alone",
|
|
"The internet is FULL, go away!",
|
|
"May the --force be with you",
|
|
"Software that sucks less",
|
|
];
|
|
|
|
var index = Math.floor((Math.random() * data.length));
|
|
window.document.getElementById("quote").innerHTML = data[index];
|