实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
4
<head>
5
<script type="text/vbscript">
6
Sub mySub()
7
  msgbox("This is a Sub procedure")
8
End Sub
9
</script>
10
</head>
11
12
<body>
13
<script type="text/vbscript">
14
Call mySub()
15
</script>
16
<p>A Sub procedure does not return a result.</p>
17
</body>
18
</html>
19