test2_6_1.htm

来自「JavaScript_VBScript网页编程实例」· HTM 代码 · 共 32 行

HTM
32
字号
<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#FFFFFF">
<script language="VBScript">
option explicit
dim myArray(6)
dim mytype
dim newtype
dim i

myArray(0)="test"
myArray(1)=123
i=0

do while i<2
  mytype=VarType(myarray(i))
  document.write("type of ")
  document.write(myArray(i))
  document.write(":")
  document.write(mytype)
  document.write("<br>")
  i=i+1
loop
newtype=myArray(0)+myArray(1)
</script>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?