问答详情
源自:6-4 鼠标移开事件(onmouseout)

为什么我在ie下弹出n多个框

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>鼠标移开事件 </title>
<script type="text/javascript">
  function message(){
    alert("不要移开,点击后进行慕课网!"); }
</script>
</head>
<body>
<form>
  <a href="http://www.imooc.com" onmouseout="message()">点击我</a>
</form>
</body>
</html>

提问者:cjy小靠谱 2016-10-26 10:51

个回答

  • qq_吣惜_04261335
    2016-10-26 11:46:02
    已采纳

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">//可以是浏览器兼容问题,建议你用HTML5;用谷歌验证看看。
    <title>鼠标移开事件 </title>
    <script type="text/javascript">
      function message(){

        alert("不要移开,点击后进行慕课网!");

       }
    </script>
    </head>
    <body>
    <form>
      <a href="http://www.imooc.com" onmouseout="message()">点击我</a>
    </form>
    </body>
    </html>

  • TimeTDIT
    2017-02-09 13:34:52

    我的也是用ie 结果跳出数十个框