美文网首页
札记丶20171011

札记丶20171011

作者: Fantasychong | 来源:发表于2017-10-17 16:40 被阅读0次

    七个多月了,成长了多少?

    JavaScript是一种易学习,流传广泛,常用于网页编程的语言。开撸吧!

    1.写出HTML输出

    实现效果:

    图1.1

    实现步骤:

    <html>

    <body>

    <p>JavaScript能够直接写入HTML输出流中</p>

    <script>

    document.write("<h1>This is a heading</h1>");

    document.write(“<p>This is a paragraph</p>”);

    </script>

    <p>

    您只能在HTML输出流中使用document.write,要是在文档之外使用,会覆盖整个文档

    </p>

    </body>

    </html>

    那我们试一下在输出流外使用该方法

    。。。

    。。

    好吧,尝试失败

    </html>

    2.对事件作出反应

    实现效果:

    图2.1

    实现步骤:

    <html>

    <body>

    <button type="button" onclick="alert('欢迎来到Fantasychong的数码小店')">双击溜溜溜</button>

    </body>

    </html>

    3.改变HTML内容

    实现效果:

    图3.1 图3.2

    实现步骤:

    <p id=“demo”>听说JavaScript可以改变文字了耶</p>

    <script>

    function myFunction()

    {

    x= document.getElementById("demo");//找到元素

    x.innerHTML=“真的耶,我已经改变成功啦”;//改变内容

    }

    </script>

    <button type="button" onclick="myFunction()">

    4.

    相关文章

      网友评论

          本文标题:札记丶20171011

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