Loading

随笔分类 -  前端

摘要:HTML 1. html文件结构 <html></html> <head></head> head是网页的头部,head中的内容不会在网页中直接出现,主要用来帮助浏览器或搜索引擎来解析网页 <meta charset="UTF-8"> 可以通过meta标签设置网页的字符集,避免乱码问题 <body> 阅读全文
posted @ 2022-03-24 21:36 繁夏 阅读(105) 评论(0) 推荐(0)
摘要:ES6 1. 语法新特性 let声明变量 解构表达式 let arr = [1, 2, 3]; let a = arr[0]; let b = arr[1]; let c = arr[2]; console.log(a, b, c); let [a, b, c] = arr; console.log 阅读全文
posted @ 2021-12-28 14:57 繁夏 阅读(54) 评论(0) 推荐(0)