问答详情
源自:1-3 我也可以独立(引用JS外部文件)

js弹窗问题

当js代码中写document.write("JS代码")时执行一次,而js中写alert("JS代码")时,弹出两次

提问者:水木年华611 2018-07-13 15:11

个回答

  • 水木年华611
    2018-07-13 15:38:58

    不是  只写了一遍 如果把alert封装到函数里面就不会弹出两次 否则就会弹出两次

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>函数调用</title>

       <script type="text/javascript">

           function contxt() //定义函数

          {

             alert("哈哈,调用函数了!");弹出一次

          }

          alert("test"); 弹出两次

       </script>

    </head>

    <body>

       <form>

          <input type="button"  value="点击我" onclick=" contxt();" />  

       </form>

    </body>

    </html>


  • 415874251
    2018-07-13 15:29:22

    你是不是在head 和 body都写了这语句

  • 415874251
    2018-07-13 15:21:10

    代码发出来看一下