Blogger Information
Blog 3
fans 0
comment 0
visits 2050
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Html页面结构-元素-类-ID等理解及学习内容
海豚
Original
709 people have browsed it

默写html页面的文档结构

  1. !DOCTYPE html 文档体
  2. html /html 根标签
  3. 标签 meta 引入一个元素 lang 标签 编写语言
  4. meta charset=“UTF-8”/ 网站编码
  5. title里面是可以更改的网页标题/title
  6. head /head 头部
  7. body /body 身体 主体元素 内容
  8. h1-h6 1级标题-6级标题
  9. p元素 是一个段落
  10. img 引入图片 video引入视频
  11. src引入一个外部链接 图片或者视频
  12. br换行 ul ol 有序列表 无序列表
  13. dd dt dl 自定义的列表
  14. span a 都是常用的标签

默写html元素的三大通用属性

  1. id获取属性 具有唯一性
  2. class 获取一类元素 可以用到很多标签上面
  3. style 行内元素
  4. p h1 div等根元素来获取

    优先级对比

    根元素 < class元素 < id属性 < style行内

理解元素,类,id不同级别的样式规则

  1. id用#号来表示 具有唯一性 css不报错 但是js不适用 用户来保证
  1. #title-id{
  2. color:#FFF;
  3. }
  1. class用.表示 表示一类 可以多个使用
    1. .title-class{
    2. color:#FFF;
    3. }
  2. style 行内样式 直接在例:p标签等表示
    1. style=“color:#FFF
  3. style /style 一般css都写着里面 这是Html的内联样式
    6.JavaScript可以获取并修改内容 样式 行为等
    6.1. 在Html中都需要用标签来表示 script 括号省略
    6.2. Window全局
    1. //window可以省略 因为像来自哪里一样省略中国
    2. //结尾都用;分号结尾
    3. //console.log 将代码发到控制台 像调试一样
    4. console.log(window);
    5. //docment
    6. console.log(window.docment);
    7. //url
    8. console.log(window.docment.URL);
    9. //文档类型 doc type
    10. console.log(window.docment.doctype);
    11. //根元素htmlocment Element(元素)
    12. console.log(window.docment.docmentElement);
    13. //头元素
    14. console.log(window.docment.head);
    15. //取头元素里面的东西 charset(编码)
    16. console.log(window.docment.charset);
    17. //tilte
    18. console.log(window.docment.head);
    19. //用JS修改的语句
    20. docment.title="这里是修改的内容";
    21. //主体body同上 同理
    22. console.log(window.docment.body);
    23. //修改语言
    24. docment.body.style.backgroundColor="这是是颜色代码#开通";
    25. //样式表 也称CSS(层叠样式表)
    26. console.log(window.docment.styleSheets);
    27. //[0]表示索引 第几个 从0开始
    28. console.log(window.docment.styleSheets[0].type);
    29. //js脚本 索引同理
    30. console.log(window.docment.script);
    31. console.log(window.docment.scrip[0]);
    32. //获取当前被执行脚本 快捷方式
    33. console.log(docment.surrentScript===[0]);
    34. //取元素标签 如h2 得使用元素 class id p等

    JavaScript声明变量 对象等

    1. //函数 function
    2. //sum就是一个变量 console相当于一个打印输出
    3. function sum(a,b){
    4. return a+b;
    5. }
    6. console.log((10,20));
    7. //另一种方法 这里不是太懂
    8. let girl ={
    9. sum=function (a,b){
    10. return a+b;
    11. }
    12. }
    13. console.log(girl.sum(30,40));
    14. //用 docment const(常量) 驼峰式命名法
    15. // get Element By Id 获取元素的ID
    16. const docment.getElementById("title-id");
    17. //获取h2 通过id的方式
    18. // ID多个 你只会拿到第一个
    19. const h2 =docment.getElementById("title-id");
    20. console.log(h2);
    21. h2.style.background="yellow";
    22. //通过class来获取 ele是元素 class是集合 所以复数 索引 获取等同理
    23. const eles =docment.getElementsByClassName("title-class");
    24. console.log(eles[0]);

    目前就是今天所学习的内容

    1.有不足之处望老师补充
    2.JS还是有点不理解 会多看视频的
    3.html+css+JavaScript 前端三宝
Correcting teacher:WJWJ

Correction status:qualified

Teacher's comments:总结的很认真仔细,不会的可以再看看视频,上php中文网看看手册。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments