function xx() {
var a = 3;
setTimeout(function(){
console.log(a);
delete a; // 需要手动删除吗?
}, 1000);
}
一般有什么更好的写法??
慕标5832272
相关分类