问答详情
源自:6-3 鼠标经过事件(onmouseover)

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

<!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>


提问者:qq_嫵钶取玳_0 2015-12-15 09:13

个回答

  • 李晓健
    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不对应,你拼错单词了