For..next 循环For..next 循环<html><body> <script type="text/vbscript">for i = 0 to 5 document.write("数字是:" & i & "<br />")next</script> </body></html>