WEB开发 之 VBScript How To ...
如何在 HTML 文档中放置 VBScript
<html>
<head>
</head>
<body>
<script type="text/vbscript">
document.write("Hello from VBScript!")
</script>
</body>
</html>
上面的代码会生成以下输出:
Hello from VBScript!
如需在 HTML 文档中插入脚本,请使用 <script> 标签。使用 type 属性来定义脚本语言。
<script type="text/vbscript">
然后输入 VBScript:在页面上写文本的命令是 document.write:
document.write("Hello from VBScript!")
脚本在此结束:
</script>
如何应对老式的浏览器
不支持脚本的老式浏览器会把脚本作为网页的内容显示出来。为了避免出现这样的情况,我们可以使用 HTML 的注释标签:
<script type="text/vbscript">
<!--
在此输入语句
-->
</script>
|