我有两个用于复制数据对象的 javascript 对象。它们是通过 onclick 事件填充的,我想在保存事件后清除它们。
例如,
var currentStrategy = {
id : "",
label : "",
dueDate : "",
comments = [],
save : saveStrategyHandler,
clear : function() {
//how do I clear the fields above in here?
}
}
我试过了
function(){
id = "";
label = "";
dueDate = "";
comments = [];
}
和
function(){
currentStrategy = {};
}
但两者都不起作用。