1. js函数
var table = function(){ var totalCount = 10;
//给函数添加一个方法,返回成员变量的值,供调用 this.getTotalCount = function(){ return totalCount; }; };
2. 调用
//调用函数对象的成员方法
new table().getTotalCount()
1. js函数
var table = function(){ var totalCount = 10;
//给函数添加一个方法,返回成员变量的值,供调用 this.getTotalCount = function(){ return totalCount; }; };
2. 调用
//调用函数对象的成员方法
new table().getTotalCount()