一直提示错误,调用函数错误,

来源:5-3 函数调用

包家花园

2015-04-14 22:24

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>函数调用</title>

<script type="text/javascript">

function tcon()

  {

alert("恭喜你学会函数调用了!");

  }

</script>

</head>

<body>

<form>

<input type="button"  value="点点我" onclick="tcon()">  

</form>

</body>

</html>

提示调用函数错误

写回答 关注

1回答

  • smile_again
    2015-05-08 09:59:49
    已采纳
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>函数调用</title>
    <script type="text/javascript">
    function tcon()
      {
    alert("恭喜你学会函数调用了!");
      }
    </script>
    </head>
    <body>
    <form>
    <input type="button"  value="点点我" onclick="tcon()">  
    </form>
    </body>
    </html>

    我的是对的啊,弹出框显示:恭喜你学会调用函数了。。。

    包家花园

    谢谢回答,那天网站关于js都出现一些问题。

    2015-05-11 07:48:08

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题