我在从对象返回值时遇到问题。我的对象看起来像这样。
function XYZ(date, startT) { var _date=date; var _startT=startT; this.get_date = function() { return _date; }; this.set_date = function(value) { _date=value; }; this.get_startT = function() { return _startT; }; this.set_startT = function(value) { _startT=value; }; this.toString() return (_date + " " _startT); }
然后我创建一个这样的数组
jsData[0] =new XYZ("2012-11-11","8:00"); jsData[1] = new XYZ("2012-03-03","8:00");
当我想使用 get_date 方法时,它没有返回值,但 get_startT 方法工作正常。当我使用 .toString 方法显示对象时,它也会显示完整的对象
请帮忙。