首页 > Web开发 > 详细

JS中构造函数与函数

时间:2016-04-16 01:56:25      阅读:295      评论:0      收藏:0      [点我收藏+]

//构造函数中,如果返回的是一个对 象,那么就保留原意. 如果返回的是非对象,比如数字、布尔和字符串,那么就返回 this,如果没有 return 语句,那么也返回this.

         var myFun1 = function(){
           
            this.name = "LiuYashion1";
            self1 = this;
            return ‘BOY‘
           
        }
       

        var myFun2 = function(){
           
            this.name = "LiuYashion2";
            return {
                sex:‘BOY‘
            };
           
        }
       
        var temp1 = new myFun1();
        var temp2 = new myFun2();
       
        console.log(temp1);              //myFun1 {name: "LiuYashion1"}
        console.log(temp1.name);    //LiuYashion1
       
        console.log(temp2);              //Object {sex: "BOY"}
        console.log(temp2.name);    //undefined
        console.log(temp2.sex);       //BOY
       
        console.log(myFun1());        //BOY
        console.log(myFun2());        //Object {sex: "BOY"}

JS中构造函数与函数

原文:http://www.cnblogs.com/nemoro1928/p/5397386.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!