问答详情
源自: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(){
      alert("测试");
      var val=document.getElementById("password").value;
      alert(val);
      if(val!=null){
          alert(val);
          confirm("成功!");
      }else{
          alert("没有值");
          confirm("请输入密码后,再单击确定!"); 
      }
    }  
</script>
</head>
<body>
<form>
密码:<input name="password" id="password" type="password" >
<input name="确定" type="button" onlick="message()" value="确定"/>
</form>
</body>
</html>

代码如上,我点击确定按钮,没有反应,朋友帮忙看一下是什么问题.O(∩_∩)O谢谢

提问者:Sunshine_sky 2016-08-30 15:25

个回答

  • 我不是程序猿_我是攻城狮
    2016-08-30 15:34:30
    已采纳

    是onclick 你掉了c

  • 慕髯
    2016-08-30 18:03:18

    遇到这种情况就会发现,代码提示是有多重要

  • 大了好不好
    2016-08-30 16:10:30

    这事儿我跟你有同感,哎,少还好,多了就惨了