实在搞不懂哪里我的代码哪里出问题了

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

lllmh

2018-08-24 13:57

<!DOCTYPE HTML>

<html>

<head>

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

<title> 鼠标经过事件 </title>

<script type="text/javascript">

    var psw=document.getElementById("psd");

    function message(){

    if(psw.value==""){    

      confirm("请输入密码后,再单击确定!"); }

    }

</script>

</head>

<body>

<form>

密码:<input id="psd" name="password" type="password" >

<input name="确定" type="button" value="确定" onmouseover="message()"/>

</form>

</body>

</html>


写回答 关注

2回答

  • 慕粉4019690
    2018-08-24 17:46:57
    已采纳

    psw变量应该放在函数体

    lllmh

    什么时候要放在函数体,什么时候放在函数外呢

    2018-08-28 11:24:02

    共 2 条回复 >

  • 1frgdhf
    2019-01-17 10:56:35

    <!DOCTYPE HTML>


    <html>


    <head>


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


    <title> 鼠标经过事件 </title>


    <script type="text/javascript">





        function message(){

     var psw=document.getElementById("psd");

      if(psw.value==""){    


         confirm("请输入密码后,再单击确定!"); }


        }


    </script>


    </head>


    <body>


    <form>


    密码:<input id="psd" name="password" type="password"  >


    <input name="确定" type="button" value="确定" onclick="message()"/>


    </form>


    </body>


    </html>


JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题