4-2节 if..else语句 出问题啦
<!DOCTYPE html>
<html>
<head>
<emta http-equiv="Content-Type" content="text/html;
charset=utf-8"/>
<title>if-else</title>
<script type="text/javaScript"/>
var ticket =true;
if(ticket)
{
document.write("有票,可以看电影啦!");
}
else
{
document.write("没有票,看不了电影啦!");
}
</script>
</head>
<body>
</body>
</html>
这是我在编辑器上写的代码,在浏览器打开什么都木有,是怎么回事啊???