为什么这样调用函数是无效的
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数调用</title>
<script type="text/javascript">
function contxt() //定义函数
{
document.write("哈哈,调用函数了!");
}
</script>
</head>
<body>
contxt();
</body>
</html>