问答详情
源自: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 some()

   confirm {

       ("请输入你的姓名之后提交");}

   </script>

   <body>

   <form>

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

   <input name="button" type="button" value="提交" onmouseover="some()">


    </form>

</body>

</html>


提问者:涂卡者 2015-07-16 12:12

个回答

  • Perona
    2015-07-16 12:17:07
    已采纳

    <script type="text/javascript">
       function some()
       confirm {
           ("请输入你的姓名之后提交");}
       </script>

    花括号没加到正确的位置,应该在some()后

    <script type="text/javascript">
       function some(){
          confirm("请输入你的姓名之后提交");
          }
    </script>