<!DOCTYPE html>
<html>
<head>
<script type="text/vbscript">
sub mySub()
MsgBox("Hello world")
end sub
</script>
</head>
<body>
<button onclick="mySub()">Click to get a messagebox</button>
</body>
</html>
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。