📄 untitled-1.html
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>选号器</title>
</head>
<body>
刷新看看<br>
<script language="javascript">
function Quickpick()
{
var ball
for( ball = 0; ball < 10; ball++)
{
this[ball] = parseInt((Math.random() * Math.pow(10,16)) % 2400) + 1;
for(var list = 0; list < ball; list++)
{
if(this[list] == this[ball])
{
list = ball;
ball--;
}
}
}
this[ball] = parseInt((Math.random() * Math.pow(10,16)) % 1) + 1;
return this;
}
</script>
<script language="javascript">
var idx;
var powerball = new Array(6);
powerball = this.Quickpick();
document.write("<center>");
document.write("体育彩票选号器");
document.write("<hr width=400><font size=+2>");
for(idx = 0; idx < 10; idx++)
document.write(powerball[idx] + " - ")
document.write("</font><font color=#D00000 size=+2>" + powerball[idx] + "</font>");
document.write("</center>");
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -