1.一个简单的代码
function s(names){this.name=names;this.showname=functoin(){ alert(this.name);}} //工厂方式
new s("张三").showname(); // 函数中 ‘this‘ 的理解
2. 面向对象的定义、特点、 对象原型prototype
时间: 2024-10-13 23:46:25
1.一个简单的代码
function s(names){this.name=names;this.showname=functoin(){ alert(this.name);}} //工厂方式
new s("张三").showname(); // 函数中 ‘this‘ 的理解
2. 面向对象的定义、特点、 对象原型prototype