【正确答案】HTML文档名称:proverb_VBScript.html
<html>
<body text=blue>
<script Language="vbscript">
document.write "<h2>万贯家财三餐饭</h2>"
document.write "<h2>百栋高楼一床眠</h2>"
</script>
</body>
</html>
脚本中document.write方法的作用与上题的相同,也是向页面输出信息。script块可以出现在HTML文档的BODY部分或HEAD部分,但一般推荐放在<head>标签中,因为这样可以保证在<body>标签中调用函数时,所有被调用的函数都能够被读取与执行。
【答案解析】