摘要: 二、函数参数形式 (1)可选参数,参数名旁使用 ? ,可选参数必须跟在必须参数后面 。 (2) 默认参数,=,可以传入undefined值 (3)剩余参数 三、函数中的this,箭头函数 四、函数重载 参数不同,函数名相同 阅读全文
posted @ 2017-09-14 15:43 pei~乐悠悠 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 一、类的属性 public: 公有, private: 私有,不能在声明它的类的外部访问,只能在类内部访问 protect: 保护,不能在声明它的类的外部访问,但继承者除外 readonly 只读属性,必须在声明时或构造函数里被初始化 static静态属性,无需实例化就可以访问静态成员 super( 阅读全文
posted @ 2017-09-14 15:31 pei~乐悠悠 阅读(209) 评论(0) 推荐(0) 编辑
摘要: src/app/hero.ts文件: src/app/app.component.ts文件: 阅读全文
posted @ 2017-09-14 12:29 pei~乐悠悠 阅读(1318) 评论(0) 推荐(0) 编辑
摘要: /* IE9 , IE10 ,IE11 */ @media screen and (min-width:0\0) { /* IE9 , IE10 ,IE11 rule sets go here */ } /*IE10*/ @media screen and (-ms-high-contrast: a 阅读全文
posted @ 2017-09-14 12:18 pei~乐悠悠 阅读(409) 评论(0) 推荐(0) 编辑