web27.html
来自「javascript 的一些简单例子 主要面对初学者」· HTML 代码 · 共 29 行
HTML
29 行
<html>
<head>
<title>the page is very good</title>
<body>
<center>
<script language="VBScript">
<!--
Sub but1_onclick()
a=Round(Rnd()*255)
b=Round(Rnd()*255)
c=Round(Rnd()*255)
Window.Document.bgcolor=rgb(a,b,c)
End Sub
Sub but2_onclick()
a=Round(Rnd()*255)
b=Round(Rnd()*255)
c=Round(Rnd()*255)
Window.Document.fgcolor=rgb(a,b,c)
End sub
-->
</script>
<input type="button" name="but1" size=10>
<input type="button" name="but2" size=10>
<font size=6>please check the foreground changing the color</font>
</center>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?