日期:2014-05-16 浏览次数:20399 次
function F1(){ var a=1; this.method1=function(){ alert(a); } } var obj=new F1(); obj.method1();