VB 用法
VBScript用法
HTML <script> 标签被用来向 HTML 中插入 VBScript。
HTML 中的 VBScript
如需在 HTML 中插入 VBScript,脚本必须写在标准的 <script> 和 </script> 标签之间。
在 <script> 标签中,请使用 type 属性来定义脚本语言 "text/vbscript":
<html>
<body>
<script type="text/vbscript">
...
</script>
</body>
</html>
<body>
<script type="text/vbscript">
...
</script>
</body>
</html>
IE 将解释和执行 <script> 和 </script> 之间的 VBScript 代码。