解读JavaScript中类的实现(转载)
摘要:
转自:http://www.mb5u.com/biancheng/AJAX/ajax_40994.html在JavaScript中可以使用function关键字来定义一个“类”,如何为类添加成员。在函数内通过this指针引用的变量或者方法都会成为类的成员,例如:function class1(){ var s="abc"; this.p1=s; this.method1=function(){ alert("this is a test method"); }}var obj1=new class1(); 通过new class1()获得对象obj1,对 阅读全文
posted @ 2011-08-09 17:42 Xt Idt 阅读(188) 评论(0) 推荐(0) 编辑