码迷,mamicode.com
首页 > Web开发 > 详细

js_5_面向对象

时间:2017-06-13 18:51:05      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:name   turn   ros   mic   func   mil   foo   strong   this   

什么是js面向对象?

      function Foo(name,age){

              this.Name = name;

         this,Age = age;

         this.Fun = function(arg){

        return this.Name+arg;

      }

    }

  var obj = new Foo(‘yizhihua’,’18’);

  console.log(obj.Name);

  console.log(obj.Age);

  var res = obj.Foo(‘mei’)

  console.log(res)

js_5_面向对象

标签:name   turn   ros   mic   func   mil   foo   strong   this   

原文地址:http://www.cnblogs.com/2bjiujiu/p/7002869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!