我的示例代码
NSFontAttributeName
输出: function testfunction(){
var index = 0;
$(string).find("data").each(function () {
if(index == 0){
var testVar = 'test'; // Declaring a variable
}
index++;
});
console.log(typeof testVar); // Shows undefined
}
在这里,我无法访问循环外的变量undefined
。
任何人都请让我知道为什么会这样,因为我在函数内创建一个变量并在同一个函数中访问同一个变量。