为什么我的HTML代码没有给出任何结果

时间:2015-06-15 11:57:46

标签: html vbscript

当我在IE9中运行代码时,它只显示任何内容。根据我的理解,它应该显示“Hello World”。作为新手用户,我很想知道会出现什么问题。 HTML代码:

<html>
<head>
<script language="vbscript" type="text/vbscript">

Function sayHello() 
   msgbox "Hello World"
End Function

</script>
</head>
<body>
<input type="button" onclick="sayHello()" value="Say Hello"/>
</body>
</html>

0 个答案:

没有答案