js对象外部访问或者调用问题_javascript技巧
来源:动视网
责编:小采
时间:2020-11-27 20:40:38
js对象外部访问或者调用问题_javascript技巧
js对象外部访问或者调用问题_javascript技巧:以下是我的代码: abc = function(){ this.a; this.b; } abc.prototype = { getData:function(){ var c = function(num){ alert(num); this.b = num; } c('12345'); }, clearData:function(){ this
导读js对象外部访问或者调用问题_javascript技巧:以下是我的代码: abc = function(){ this.a; this.b; } abc.prototype = { getData:function(){ var c = function(num){ alert(num); this.b = num; } c('12345'); }, clearData:function(){ this

以下是我的代码:
js对象外部访问或者调用问题_javascript技巧
js对象外部访问或者调用问题_javascript技巧:以下是我的代码: abc = function(){ this.a; this.b; } abc.prototype = { getData:function(){ var c = function(num){ alert(num); this.b = num; } c('12345'); }, clearData:function(){ this