实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<script type="text/vbscript">
6
For i=1 To 6
7
 document.write("<h" & i & ">This is header " & i & "</h" & i & ">")
8
Next
9
</script>
10
11
</body>
12
</html>
13