var j=0
setInterval(function(){
//var j=0在函数内部定义j无法实现自增呢?
j++
console.log(j)
},1000)
慕田峪4524236
相关分类