问答详情
源自:1-2 编程练习

编程练习

编程练习


提问者:Chacetse 2014-11-13 23:31

个回答

  • 廖廖廖
    2015-12-14 22:49:57

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>系好安全带,准备启航</title>

    <!--引入外部文件的方式-->

    <script src="script.js"></script>

    <script type="text/javascript">

    /*多行注释

      我是多行注释!

      我需要隐藏,

      否则会报错哦!

    */

    //在页面中显示文字

    document.write('系好安全带,准备启航--目标JS')

    //页面中弹出提示框

    alert('准备好了,起航吧!');

    //单行注释

       //我是单行注释,我也要隐藏起来!


    </script>

    </head>

    <body>

        <form>

            <input type="button" value="点击我准备起航" onclick="al()" />

        </form>

    </body>

    </html>