为什么不能输出”你好“?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
var myname=prompt("请输入你的名字");
if (myname != null)
{
document.write("hello");
}
else
{
document.write("你好");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我" />
</body>
</html>
为什么不能输出”你好“