哪错了?求教求教
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数调用</title>
<script type="text/javascript">
function tcon()
{
alert("恭喜你学会函数调用了!");
}
function return()
{
alert("谢谢慕课网,我终于有信心学习web了!");
}
</script>
</head>
<body>
<form>
<input type="button" value="点点我" onclick="tcon()">
<br>
</form>
</body>
</html>
只定义一个函数可以运行,多定义一个就不可以了,这是什么情况