我将自己介绍给VbScript,有人能告诉我我的代码有什么问题吗?当我在IE中运行它时,输出是空白的...我希望Hello World
E1:我将文件保存为.html
<html>
<body>
<script language="vbscript" type="text/vbscript">
document.write("Hello World!")
</script>
</body>
</html>
答案 0 :(得分:1)
document.write()
是JavaScript而不是VBScript。您只需使用tge以在浏览器中显示它:
<html>
<body>
<script>
document.write("Hello World!");
</script>
</body>
</html>
但是如果你想真正使用VBScript,那么你需要使用一个支持浏览器,我觉得我认为目前还没有。看起来您可能需要打开该功能才能使用它:
Internet Explorer中的VBScript
以下是在Internet Explorer中打开或关闭VBScript的简单步骤: