1. 面向过程与面向对象
1.1 面向过程
- 面向过程就是分析出解决问题所需要的步骤,然后用函数把这些步骤一步一步实现,使用的时候再一个一个的依次调用就可以了。
1.2 面向对象
- 向对象是把事务分解成为一个个对象,然后由对象之间分工与合作。
1.3 面向过程与面向对象对比
面向过程 | 面向对象 | |
---|---|---|
优点 | 性能比面向对象高,适合跟硬件联系很紧密的东西,例如单片机就采用的面向过程编程。 | 易维护、易复用、易扩展,由于面向对象有封装、继承、多态性的特性,可以设计出低耦合的系统,使系统 更加灵活、更加易于维护 |
缺点 | 不易维护、不易复用、不易扩展 | 性能比面向过程低 |
2. 对象与类
2.1 对象
- 对象是由属性和方法组成的:是一个无序键值对的集合,指的是一个具体的事物;
- 属性:事物的特征,在对象中用属性来表示(常用名词);
- 方法:事物的行为,在对象中用方法来表示(常用动词);
/**
* 在ES6中增加了类和对象
*/
/**
* 使用 class 创建一个明星类
*/
class Star {
constructor(name, age) {
this.name = name;
this.age = age;
}
sing(name) {
console.log('hello' + name);
}
}
let star = new Star('刘德华', 23);
let zxy = new Star('张学友', 23);
console.log(star);
console.log(zxy);
zxy.sing(123);
2.2 类
- 在
ES6
中新增加了类的概念,可以使用class
关键字声明一个类,之后以这个类来实例化对象。类抽象了对象的公共部分,它泛指某一大类(class
)对象特指某一个,通过类实例化一个具体的对象。
创建类
- 语法:
//步骤1 使用class关键字
class name {
// class body
}
//步骤2使用定义的类创建实例 注意new关键字
var xx = new name();
- 示例:
// 1. 创建类 class 创建一个 明星类
class Star {
// 类的共有属性放到 constructor 里面
constructor(name, age) {
this.name = name;
this.age = age;
}
}
// 2. 利用类创建对象 new
var ldh = new Star('刘德华', 18);
console.log(ldh);
- 通过结果我们可以看出,运行结果和使用构造函数方式一样。
类创建添加属性和方法
// 1. 创建类 class 创建一个类
class Star {
// 类的共有属性放到 constructor 里面 constructor是 构造器或者构造函数
constructor(uname, age) {
this.uname = uname;
this.age = age;
}//------------------------------------------->注意,方法与方法之间不需要添加逗号
sing(song) {
console.log(this.uname + '唱' + song);
}
}
// 2. 利用类创建对象 new
var ldh = new Star('刘德华', 18);
console.log(ldh); // Star {uname: "刘德华", age: 18}
ldh.sing('冰雨'); // 刘德华唱冰雨
注意哟:
通过
class
关键字创建类, 类名我们还是习惯性定义首字母大写;类里面有个
constructor
函数,可以接受传递过来的参数,同时返回实例对象;constructor
函数 只要new
生成实例时,就会自动调用这个函数, 如果我们不写这个函数,类也会自动生成这个函数;多个函数方法之间不需要添加逗号分隔;
生成实例
new
不能省略;语法规范, 创建类 类名后面不要加小括号,生成实例 类名后面加小括号, 构造函数不需要加
function
。
类的继承
- 语法:
// 父类
class Father{
}
// 子类继承父类
class Son extends Father {
}
- 示例:
class Father {
constructor(surname) {
this.surname= surname;
}
say() {
console.log('你的姓是' + this.surname);
}
}
class Son extends Father{ // 这样子类就继承了父类的属性和方法
}
var damao= new Son('刘');
damao.say(); //结果为 你的姓是刘
子类使用super关键字访问父类的方法
//定义了父类
class Father {
constructor(x, y) {
this.x = x;
this.y = y;
}
sum() {
console.log(this.x + this.y);
}
}
//子元素继承父类
class Son extends Father {
constructor(x, y) {
super(x, y); //使用super调用了父类中的构造函数
}
}
var son = new Son(1, 2);
son.sum(); //结果为3
注意:
继承中,如果实例化子类输出一个方法,先看子类有没有这个方法,如果有就先执行子类的;
继承中,如果子类里面没有,就去查找父类有没有这个方法,如果有,就执行父类的这个方法(就近原则);
如果子类想要继承父类的方法,同时在自己内部扩展自己的方法,利用
super
调用父类的构造函数,super
必须在子类this
之前调用。
// 父类有加法方法
class Father {
constructor(x, y) {
this.x = x;
this.y = y;
}
sum() {
console.log(this.x + this.y);
}
}
// 子类继承父类加法方法 同时 扩展减法方法
class Son extends Father {
constructor(x, y) {
// 利用super 调用父类的构造函数 super 必须在子类this之前调用,放到this之后会报错
super(x, y);
this.x = x;
this.y = y;
}
subtract() {
console.log(this.x - this.y);
}
}
var son = new Son(5, 3);
son.subtract(); //2
son.sum();//8
this 的指向问题
时刻注意this的指向问题,类里面的共有的属性和方法一定要加this使用。
constructor
中的this指向的是new
出来的实例对象 。自定义的方法,一般也指向的
new
出来的实例对象。绑定事件之后
this
指向的就是触发事件的事件源。
在 ES6 中类没有变量提升,所以必须先定义类,才能通过类实例化对象
3. 面向对象版tab 栏切换
3.1 功能需求
点击 tab栏,可以切换效果;
点击 + 号, 可以添加 tab 项和内容项;
点击 x 号, 可以删除当前的tab项和内容项;
双击tab项文字或者内容项文字可以修改里面的文字内容。
3.2 案例准备
获取到标题元素;
获取到内容元素;
获取到删除的小按钮
x
号;新建
js
文件,定义类,添加需要的属性方法(切换,删除,增加,修改);时刻注意
this
的指向问题。
3.3 代码实现
html
面向对象 Tab
Js 面向对象 动态添加标签页
测试1
测试2
测试3
css
* {
margin: 0;
padding: 0;
}
ul li {
list-style: none;
}
main {
width: 960px;
height: 500px;
border-radius: 10px;
margin: 50px auto;
}
main h4 {
height: 100px;
line-height: 100px;
text-align: center;
}
.tabsbox {
width: 900px;
margin: 0 auto;
height: 400px;
border: 1px solid lightsalmon;
position: relative;
}
nav ul {
overflow: hidden;
}
nav ul li {
float: left;
width: 100px;
height: 50px;
line-height: 50px;
text-align: center;
border-right: 1px solid #ccc;
position: relative;
}
nav ul li.liactive {
border-bottom: 2px solid #fff;
z-index: 9;
}
#tab input {
width: 80%;
height: 60%;
}
nav ul li span:last-child {
position: absolute;
user-select: none;
font-size: 12px;
top: -18px;
right: 0;
display: inline-block;
height: 20px;
}
.tabadd {
position: absolute;
/* width: 100px; */
top: 0;
right: 0;
}
.tabadd span {
display: block;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
border: 1px solid #ccc;
float: right;
margin: 10px;
user-select: none;
}
.tabscon {
width: 100%;
height: 300px;
position: absolute;
padding: 100px;
top: 50px;
left: 0px;
box-sizing: border-box;
border-top: 1px solid #ccc;
}
.tabscon section,
.tabscon section.conactive {
display: none;
width: 100%;
height: 100%;
}
.tabscon section.conactive {
display: block;
}
javascript
let that;
class Tab {
/**
* Tab 的构造器
* @param id
*/
constructor(id) {
// 获取到构造器中的 this 赋值给全局变量 that
that = this;
this.main = document.querySelector(id);
this.tabAdd = this.main.querySelector('.tabadd');
// 获取到选项卡的父元素
this.ul = this.main.querySelector('.fisrstnav ul:first-child');
// 获取section的父元素
this.sections = this.main.querySelector('.tabscon');
this.init();
}
/**
* 初始化方法 事件绑定都放在里面
*/
init() {
this.updateNode();
// 初始化操作让相关的元素绑定事件
for (let i = 0; i < this.lis.length; i++) {
this.lis[i].index = i;
this.lis[i].onclick = this.toggleTab;
this.closeBtns[i].onclick = this.closeTab;
this.spans[i].ondblclick = this.editTab;
this.section[i].ondblclick = this.editTab; // todo
}
// 添加选项卡的按钮
this.tabAdd.onclick = this.addTab; // 这里不能加括号加上括号就是立即调用
}
/**
* 更新节点 每次初始化的时候调用
*/
updateNode() {
this.closeBtns = this.main.querySelectorAll('.icon-guanbi')
this.lis = this.main.querySelectorAll('li');
this.section = this.main.querySelectorAll('section');
this.spans = this.main.querySelectorAll('.fisrstnav li span:first-child');
}
/**
* 切换tab
*/
toggleTab() {
// 这里的 this 执行的是调用者 this.lis[i]
that.clearClass();
this.className = 'liactive';
that.section[this.index].className = 'conactive';
}
/**
* 添加tab
*/
addTab() {
// 清除其他选项卡样式
that.clearClass();
let random = Math.random();
// appendChild 不支持追加字符串的子元素,insertAdjacentHTML 支持追加字符串的子元素
let li = '新建选项卡 ';
let sectionItem = '测试' + random + ' ';
// insertAdjacentHTML() 可以直接把字符串格式的元素添加到父元素中
// 将字符串添加到选项卡的父元素中
that.ul.insertAdjacentHTML('beforeend', li);
that.sections.insertAdjacentHTML('beforeend', sectionItem);
// 当我们点击了添加按钮之后需要重新获取所有的li 和 section
that.init();
}
/**
* 编辑 tab
*/
editTab() {
let con = this.innerHTML;
// 双击禁止选定文字
window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();
// 在span中添加一个input
this.innerHTML = ''
console.log(this.parentNode.index);
let input = this.children[0];
input.value = con;
input.select(); // 文本框中的文字处于选中状态
// 当离开文本框就将文本框中的值给span 文本框失去焦点的时候
input.onblur = function () {
// 此时的this指向的是 input
this.parentNode.innerHTML = this.value; // 将父元素的内容替换掉类
}
// 输入完成按下回车也可以实现文本修改
input.onkeyup = function (e) {
if (e.keyCode === 13) {
// 手动调用表单失去焦点事件
this.blur();
}
}
}
/**
* 删除 tab
*/
closeTab(e) {
// 阻止事件冒泡
e.stopPropagation();
// 获取到父元素中的index
let index = this.parentNode.index;
that.lis[index].remove();
that.section[index].remove();
// 需要重新初始化DOM元素
that.init();
// 当我们删除的不是选定状态选项卡的时候
if (document.querySelector('.liactive')) { // 如果此时剩下的li中还存在选中状态的样式说明当前我们删除的不是带有选中状态的li可以直接返回
return
}
// 当删除了选中状态的这个li的时候,让它的前一个li处于选定状态
index--;
// 前面为真才会执行后面的调用
that.lis[index] && that.lis[index].click(); // 手动调用点击事件,不需要鼠标触发
}
/**
* 清除样式
*/
clearClass() {
for (let i = 0; i < that.lis.length; i++) {
that.lis[i].className = '';
that.section[i].className = '';
}
}
}
new Tab('#tab');