php001

作者: 招财大龙猫 | 来源:发表于2016-03-14 20:50 被阅读16次
    编程的小象

    安装两款插件

    1.firebug
    2.webdevelope tools

    html页面元素:

    1.doctype
    2.html
    . 1)head
    . *编码
    . *样式
    . 事件
    .2)body
    正文

    <!-- 1.页面文档 -->
    
    <!DOCTYPE html>  
    <!-- //浏览器通用标准 --utf-8>
    <html>
    <head>
        <!-- head头 -->
        <meta charset="utf-8">
        <style type="text/css">
            h1{
                color: red;
            }
        </style>
    
        <script src="jquery.js"></script>
    
        <script>
            $(function() {
                $("h1").click(function() {
                    $(this).hide(1000);
                });
            });
        </script>
    
    </head>
    <body>
        <!--  body体-->
        <h1>php第一节</h1>
    </body>
    </html>
    
    <!-- 一个网站包含两大块,doctype和html
    head头里面要定义3部分
    (1)编码标准和格式
    (2)事件和选项 -->
    (3)样式
    
    
    

    相关文章

      网友评论

          本文标题:php001

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