日期:2014-05-16 浏览次数:20400 次
var Luger={
newToDo:function(title,content,time,rank,color){
this.title = title;
this.content = content;
this.time = time;
this.rank = rank;
this.color = color;
},
addToDo:function(toDo){
alert("1"+toDo);
toDoList[toDoList.length] = toDo;
},
newAndAddToDo:function(title,content,time,rank,color){
var toDo = this.newToDo(title,content,time,rank,color);
this.addToDo(toDo);
}
}
// 构造函数
function Luger(title, content, time, rank, color){
this.title = title;
this.content = content;
this.time = time;
this.rank = rank;
this.color = color;
}
// 公共方法
Luger.prototype = {
addToDo : function (toDo) {
alert("1" + toDo);
toDoList[toDoList.length] = toDo;
},
newAndAddToDo: function () {
this.addToDo(this.title);
}
}
// 初始化
var l = new Luger('me', '23age');
newToDo: function (title, content, time, rank, color) {
return {
title: title,
content: content,
time: time,
rank: rank,
color: color
&nbs