超简单的问题。。。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script language="javascript">
function write()
{
document.write("我要开始学Javascript了!");
alert("你好!");
}
</script>
</head>
<body>
<form method="post" id="form1">
<input type="button" onClick="write()" value="go">
</form>
</body>
为什么点击按钮go之后,不能执行定义的函数write()啊???但把write();放在<script>..</script>里,就可以执行,这是怎么回事啊,,无论在IE或TT中,结果一样!