博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS对象的几种创建方式
阅读量:5080 次
发布时间:2019-06-12

本文共 1623 字,大约阅读时间需要 5 分钟。

1、工厂模式创建对象

function Parent(){                   var o=new Object();                   o.name="Qian";                   o.age=21;                   return o;                                   }                var x=Parent();                alert(x.name);                alert(x.age)

 

2、构造函数创建对象

var demo=function(){                 return "脚本之家";             };             function Parent(){                 this.name="脚本";                 this.demo=demo;             };                 var x =new Parent();                 alert(x.name);                 alert(x.demo());

 

3、原型模式

 (1).函数中不对属性进行定义

 (2).利用prototype属性对属性进行定义
 (3).同样的,不推荐使用这样方式创建对象

var demo=function(){                 return "脚本之家";             };             function Parent(){             };             Parent.prototype.name="JavaScript";             Parent.prototype.age="1";             Parent.prototype.demo=demo;             var x =new Parent();             alert(x.name);             alert(x.demo());
 

4、混合模式的构造函数

function Parent(){                 this.name="脚本";              };             Parent.prototype.demo=function(){                 return this.name;             };                var x =new Parent();                 alert(x.demo());

 

5、动态原型方式

function Parent(){                 this.name="脚本";                 if(typeof Parent._lev=="undefined"){                     Parent.prototype.lev=function(){                         return this.name;                     }                     Parent._lev=true;                 }             };             var x =new Parent();             alert(x.lev());

 

 
 

转载于:https://www.cnblogs.com/qian21/p/8525669.html

你可能感兴趣的文章
-bash: xx: command not found 在有yum源情况下处理
查看>>
[leetcode]Minimum Path Sum
查看>>
内存管理 浅析 内存管理/内存优化技巧
查看>>
hiho1079 线段树区间改动离散化
查看>>
【BZOJ 5222】[Lydsy2017省队十连测]怪题
查看>>
第二次作业
查看>>
【input】 失去焦点时 显示默认值 focus blur ★★★★★
查看>>
Java跟Javac,package与import
查看>>
day-12 python实现简单线性回归和多元线性回归算法
查看>>
Json格式的字符串转换为正常显示的日期格式
查看>>
[转]使用 Razor 进行递归操作
查看>>
[转]Android xxx is not translated in yyy, zzz 的解决方法
查看>>
docker入门
查看>>
Android系统--输入系统(十一)Reader线程_简单处理
查看>>
监督学习模型分类 生成模型vs判别模型 概率模型vs非概率模型 参数模型vs非参数模型...
查看>>
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
ambari 大数据安装利器
查看>>