
前端
前端
789请问
刚开始学习,有什么不对的,请指教。
展开
-
前端学习目录
1.前端基础知识_789请问的博客-优快云博客 https://blog.youkuaiyun.com/u013553694/article/details/104024230 2.HTML_789请问的博客-优快云博客 https://blog.youkuaiyun.com/u013553694/article/details/108035834原创 2020-08-16 15:30:54 · 122 阅读 · 0 评论 -
ES6
1.extends class Point { constructor(x, y) { this.x = x; this.y = y; } toString(){ return this.x + ' ' + this.y; } } class ColorPoint extends Point { constructor(x, y, color) { //this.color = color;原创 2020-09-13 11:29:32 · 188 阅读 · 0 评论 -
JS
1.继承:原型链 function a(){ this.yy=[1,2] } a.prototype.say_a=function(){ console.log(this.yy) } function b(){ a.call(this)//继承属性 this.yyy=[3,4] } b.prototype=new a();//继承方法 b.prototype.say_b=function(){ console.log(this.yyy) } var c = new原创 2020-09-13 09:27:10 · 256 阅读 · 0 评论 -
CSS
目录 1.CSS语法 1 1.1基础语法 1 1.2派生选择器 1 1.3 id选择器 1 1.4类选择器 1 1.5属性选择器 1 1.6创建 1 2.样式 2 3.框模型 3 4.定位 4 5.选择器 5 5.1元素选择器 5 5.2类选择器 5 5.3 ID选择器 5 5.4属性选择器 5 5.5组合选择器 6 5.6 伪类 6 5.7 伪元素 6 5.8分组和嵌套 6 6.高级 6 6.1对齐块元素 6 6.2尺寸 7 6.3分类属性 7 6.4 媒介原创 2020-08-16 17:25:11 · 236 阅读 · 0 评论 -
HTML
目录 1.标签 2 1.1基本 2 1.2文本格式 2 1.3引用 3 1.4图片 3 1.5 链接 3 1.6表格 3 1.7 列表 3 1.8表单 4 1.9布局 4 1.10框架 4 1.11脚本 4 1.12媒体 4 1.13实体 5 2. 属性 5 1.标签 1.1基本 <!DOCTYPE> <html> 定义 HTML 文档 &l...原创 2020-08-16 14:07:05 · 157 阅读 · 0 评论 -
前端基础知识
1.HTML+CSS HTML+CSS入门篇(上) - 简书 https://www.jianshu.com/p/7aa0b5274181 HTML+CSS入门篇(下) - 简书 https://www.jianshu.com/p/37e1791144fc 2.XML XML 教程 | 菜鸟教程 https://www.runoob.com/xml/xml-tutorial.html...原创 2020-01-17 19:56:43 · 202 阅读 · 0 评论