摘要:
Javascript中function即为类,在function内部用this设置类的public成员变量与方法,例如:View Code 1 function myclass(name){ 2 var str = "private string"; //private field 3 function privatefn(){ //private method 4 alert(str); 5 }; 6 this.name = name; 7 this.pubfn = function(){ 8 privatefn(); //call private method 9 al 阅读全文
posted @ 2011-06-28 14:50
linny
阅读(196)
评论(0)
推荐(0)

浙公网安备 33010602011771号