为什么他不能弹出鼠标经过事件的对话框

来源:6-3 鼠标经过事件(onmouseover)

qq_嫵钶取玳_0

2015-12-15 09:13

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> 鼠标经过事件 </title>
<script type="text/javascript">
    function message(){
      confirm("请输入密码后,再单击确定!"); }
</script>
</head>
<body>
<form>
密码:<input name="password" type="password" >
<input name="确定" type="button" value="确定" onmouseover="massage()"/>
</form>
</body>
</html>


写回答 关注

4回答

  • 李晓健
    2015-12-15 09:20:54
    已采纳

    message  这个方法名写错了,定义和调用两个地方写的不一样

    <!DOCTYPE HTML>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title> 鼠标经过事件 </title>
        <script type="text/javascript">
            function message(){
                confirm("请输入密码后,再单击确定!"); }
        </script>
    </head>
    <body>
    <form>
        密码:<input name="password" type="password" >
        <input name="确定" type="button" value="确定" onmouseover="message()"/>
    </form>
    </body>
    </html>


  • ry836478606
    2016-03-26 12:31:47

    我也经常犯这种错误的额


  • 帮秋
    2015-12-15 10:20:07

    楼上正解

  • Caballarii
    2015-12-15 09:19:28

    message和massage不对应,你拼错单词了

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题