美文网首页
20190225课练

20190225课练

作者: 楚荷音 | 来源:发表于2019-02-25 15:12 被阅读0次

    使用JavaScript输出helloworld

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>JavaScript简介</title>

    </head>

    <body>
    <script type="text/javascript">
    document.write("<h1>HELLO WORLD</h1>")
    </script>
    </body>
    </html>
    ————————————————————
    使用外部引用,实现对话弹框

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>JavaScript简介</title>

    </head>

    <body>
    <script type="text/javascript">
    document.write("<h1>HELLO WORLD</h1>")
    alert("好好学习JavaScript技术");//
    </script>
    </body>
    </html>

    相关文章

      网友评论

          本文标题:20190225课练

          本文链接:https://www.haomeiwen.com/subject/rtcgyqtx.html