search

Home  >  Q&A  >  body text

各位看一下那里错了,为什么没有弹出对话框?

<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 失焦事件 </title>
<script type="text/javascript">
  function message(){
    alert("请确定已输入密码后,在移开!"); }
    function add(){
        alert("请输入我爱你");
    }    
</script>    
</head>
<body>
  <form>
   用户:<input name="username" type="text" value="请输入用户名!" onfocus="add()" ><br>
   密码:<input name="password" type="text" value="请输入密码!" onblur="message()">
  </form>
</body>
</html>


看透不说透看透不说透2906 days ago1016

reply all(3)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:08:15

    Look at what’s wrong. Why doesn’t the dialog box pop up? -PHP Chinese website Q&A-Please take a look at what is wrong. Why is there no dialog box popping up? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 我是灰太狼

    我是灰太狼2016-12-20 14:06:26

    第二个分号用的是中文的分号,所以没用,换成英文的就可以了

    1.jpg

    reply
    0
  • 迷茫

    迷茫2016-12-20 14:03:23

    alert("请输入我爱你");把这个分号改为英文分号就好了

    alert("请输入我爱你");


    reply
    0
  • Cancelreply