javascript面向对象编程(一) 实例代码
javascript面向对象编程(一) 实例代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:vartest={numA:10,objB:{},arrC:[],init:function(){alert(this.n...

复制代码 代码如下:

<script type="text/javascript">

var test = {

numA: 10,

objB: {},

arrC: [],

init: function(){

alert(this.numA);

},

sayHi: function(name){

alert("hello " + name);

},

sayHelloWorld: function(){

this.sayHi("world");

},

get: function(){

var self = this;

this.objB.alertNumA = function(){

alert(self.numA);

}

}

};

var TestFunc = function(){

alert("i'm testFunc");

};

TestFunc.prototype = {

extFunc: function(){

alert("this extend function's numB is " + this.numB);

},

numB: 10

};

test.init();

test.sayHi("qingming");

test.sayHelloWorld();

test.get();

test.objB.alertNumA();

var testFunc = new TestFunc();

testFunc.extFunc();

</script>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类