一、什么叫对象?
数据(特性) + 行为(方法) = 对象 //对象内的特性与方法等于对象外的变量与函数
二、如何自定义对象?
1、创建构造函数
function Blog(body, date){ this.body = body; //一定要用this,构造函数才知道你在创建对象特性。 this.date = date; }
2、创建对象
var blog = new Blog(body, date);
时间: 2024-12-28 02:34:13
一、什么叫对象?
数据(特性) + 行为(方法) = 对象 //对象内的特性与方法等于对象外的变量与函数
二、如何自定义对象?
1、创建构造函数
function Blog(body, date){ this.body = body; //一定要用this,构造函数才知道你在创建对象特性。 this.date = date; }
2、创建对象
var blog = new Blog(body, date);