编辑文本后点击显示结果
返回西安商务网 网页教程与代码首页
<html> <head><title>VBScript代码示例 - for next 循环语句</title></head> <body> <script type="text/vbscript"> Dim i for i = 0 to 10 document.write("Number " & i & "<br>") next </script> </body> </html>