借助构造函数创建出来的实例对象之间彼此不影响
引用的不同的堆地址
,浪费内存
案例如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>构造函数实现面向对象title>
head>
<body>
<script>
// 构造函数实现面向对象
// 公共的属性和方法封装到构造函数里面
function Star(uname, age) {
this.uname = uname
this.age = age
this.sing = function() {
console.log('唱歌')
}
}
const ldh = new Star('刘德华', 55)
const zxy = new Star('张学友', 58)
console.log(ldh.sing === zxy.sing) //false 说明两个函数地址不同,浪费内存空间
//公共的方法写到原型对象身上
Star.prototype.sing2 = function() {
console.log('唱歌')
}
console.log(ldh.sing2 === zxy.sing2) //true 说明两个函数地址相同,节省内存空间
script>
body>
html>
**原型对象:**JavaScript 规定,每一个构造函数都有一个prototype 属性
,这个prototype 属性是一个对象,这个对象称为原型对象
。
原型对象作用:
原型对象
可以挂载函数,对象实例共享原型上函数,可以直接用实例对象调用挂载的函数,函数对象引用相同的堆地址,节约内存。
可以把那些不变的方法,挂载在 prototype 对象上。
原型对象this指向:构造函数和原型对象中的this都指向实例化的对象。
案例如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>原型对象及this指向title>
head>
<body>
<script>
{
// 构造函数实现面向对象
function Star(uname, age) {
this.uname = uname
this.age = age
}
//公共的方法写到原型对象身上
Star.prototype.sing = function() {
console.log('唱歌')
}
const ldh = new Star('刘德华', 55)
const zxy = new Star('张学友', 58)
console.log(ldh.sing === zxy.sing) //true 说明两个函数地址相同,节省内存空间
}
{
//原型对象this指向
let that
function Star2(uname) {
this.uname = uname
}
Star2.prototype.sing = function() {
that = this
console.log('唱歌')
}
//实例对象zjl
const zjl = new Star2('周杰伦')
zjl.sing()
console.log(that === zjl) //true 原型对象里面的函数this指向的还是实例对象zjl
console.log(zjl) //打印对象
}
script>
body>
html>
数组扩展
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>数组扩展title>
head>
<body>
<script>
// 自己定义数组扩展方法
// 1. 我们定义的这个方法,任何一个数组实例对象都可以使用
// 2. 自定义的方法写到 数组.prototype 身上
// 1.最小值
Array.prototype.max = function() {
// 展开运算符
return Math.max(...this)
// 原型函数里面的this 指向谁? 实例对象 arr
}
// 2.最小值
Array.prototype.min = function() {
// 展开运算符
return Math.min(...this)
// 原型函数里面的this 指向谁? 实例对象 arr
}
// 3. 求和
Array.prototype.sum = function() {
return this.reduce((prev, item) => prev + item, 0)
}
const arr = [1, 2, 3]
console.log(arr.max()) //3
console.log(arr.min()) //1
console.log(arr.sum()) //6
script>
body>
html>
原型对象
里面都有个constructor 属性
指向
该原型对象的构造函数
对象形式赋值
原型对象
原来的内容就会被覆盖
,这样原型对象.constructor
!=构造函数
原型对象.constructor
=构造函数
案例如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>constructor属性title>
head>
<body>
<script>
// constructor 构造函数
function Star(name) {
this.name = name
}
//对象形式赋值
Star.prototype = {
sing: function() {
console.log('唱歌')
},
dance: function() {
console.log('跳舞')
},
}
console.log(Star.prototype.constructor) //指向Object
//对象形式赋值
Star.prototype = {
// 重新指回创造这个原型对象的构造函数
constructor: Star,
sing: function() {
console.log('唱歌')
},
dance: function() {
console.log('跳舞')
},
}
console.log(Star.prototype.constructor) //指向Star
script>
body>
html>
__proto__
是JS非标准属性对象.__proto__
===构造函数.prototype原型对象
。对象__proto__.constructor===构造函数.prototype原型对象.constructor===构造函数
案例如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>对象原型title>
head>
<body>
<script>
function Star() {
}
const ldh = new Star()
// 对象.__proto__===构造函数.prototype原型对象
console.log(ldh.__proto__ === Star.prototype) //true
// 对象__proto__.constructor===构造函数.prototype原型对象.constructor===构造函数
console.log(ldh.__proto__.constructor === Star) //true
script>
body>
html>
公共部分
到父类父类对象
,然后子类的原型的构造函数指回自己的构造函数特有方法属性
案例如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>原型继承title>
head>
<body>
<script>
// 构造函数 父类Person
function Person() {
this.eyes = 2
this.head = 1
}
// 构造函数 子类Woman
function Woman() {
}
// 通过原型来继承 父类Person
Woman.prototype = new Person() // new 出来每次都是新对象
// 指回原来的构造函数
Woman.prototype.constructor = Woman
// 给女人添加一个方法 生孩子
Woman.prototype.baby = function() {
console.log('宝贝')
}
// 构造函数 子类Man
function Man() {
}
// 通过原型来继承 父类Person
Man.prototype = new Person()
// 指回原来的构造函数
Man.prototype.constructor = Man
//构建Woman和Man的实例
const red = new Woman()
console.log(red)
const pink = new Man()
console.log(pink)
script>
body>
html>
基于原型对象的继承
使得不同构造函数的原型对象关联在一起
,并且这种关联的关系是一种链状的结构
,我们将原型对象的链状结构关系称为原型链
__proto__
指向的 prototype 原型对象)__proto__
对象原型的意义就在于为对象成员查找机制提供一个方向,或者说一条路线instanceof
运算符用于检测构造函数的 prototype 属性是否出现在某个实例对象的原型链上案例如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>原型链title>
head>
<body>
<script>
function Person() {
}
const ldh = new Person()
console.log(ldh instanceof Person) //true
console.log(ldh instanceof Object) //true
console.log(ldh instanceof Array) //false
console.log([1, 2, 3] instanceof Array) //true
console.log(Array instanceof Object) //true
script>
body>
html>
实现细节
Modal 构造函数 制作,需要的公共属性: 标题(title)、提示信息内容(message) 可以设置默认参数
open方法
写到构造函数的原型对象身上
把刚才创建的modalBox 添加到 页面 body 标签中
open 打开的本质就是 把创建标签添加到页面中
点击按钮, 实例化对象,传入对应的参数,并执行 open 方法
close方法
写到构造函数的原型对象身上
把刚才创建的modalBox 从页面 body 标签中 删除
需要注意,x 删除按钮绑定事件,要写到open里面添加
因为open是往页面中添加元素,同时顺便绑定事件
代码如下:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>面向对象封装消息提示title>
<style>
.modal {
width: 300px;
min-height: 100px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 4px;
position: fixed;
z-index: 999;
left: 50%;
top: 50%;
transform: translate3d(-50%, -50%, 0);
background-color: #fff;
}
.modal .header {
line-height: 40px;
padding: 0 10px;
position: relative;
font-size: 20px;
}
.modal .header i {
font-style: normal;
color: #999;
position: absolute;
right: 15px;
top: -2px;
cursor: pointer;
}
.modal .body {
text-align: center;
padding: 10px;
}
.modal .footer {
display: flex;
justify-content: flex-end;
padding: 10px;
}
.modal .footer a {
padding: 3px 8px;
background: #ccc;
text-decoration: none;
color: #fff;
border-radius: 2px;
margin-right: 10px;
font-size: 14px;
}
.modal .footer a.submit {
background-color: #369;
}
style>
head>
<body>
<button id="delete">删除button>
<button id="login">登录button>
<script>
// 1. 模态框的构造函数
function Modal(title = '', message = '') {
// 公共的属性部分
this.title = title
this.message = message
// 因为盒子是公共的
// 1. 创建 一定不要忘了加 this
this.modalBox = document.createElement('div')
// 2. 添加类名
this.modalBox.className = 'modal'
// 3. 填充内容 更换数据
this.modalBox.innerHTML = `
${this.title} x
${this.message}
`
}
// 2. 打开方法 挂载 到 模态框的构造函数原型身上
Modal.prototype.open = function() {
if (!document.querySelector('.modal')) {
// 把刚才创建的盒子 modalBox 渲染到 页面中 父元素.appendChild(子元素)
document.body.appendChild(this.modalBox)
// 获取 x 调用关闭方法
this.modalBox.querySelector('i').addEventListener('click', () => {
// 箭头函数没有this 上一级作用域的this
// 这个this 指向 m
this.close()
})
}
}
// 3. 关闭方法 挂载 到 模态框的构造函数原型身上
Modal.prototype.close = function() {
document.body.removeChild(this.modalBox)
}
// 4. 按钮点击
document.querySelector('#delete').addEventListener('click', () => {
const m = new Modal('温馨提示', '您没有权限删除')
// 调用 打开方法
m.open()
})
// 5. 按钮点击
document.querySelector('#login').addEventListener('click', () => {
const m = new Modal('友情提示', '您还么有注册账号')
// 调用 打开方法
m.open()
})
script>
body>
html>