騰訊的一道JavaScript面試題

 

//題目:分別彈出什麼內容?
<!--  
function test(){  
    this.a = 1;  
    alert(this);   //[object Window]
}  
test();  
  
var t = new test();  //[object Object]

alert(a);  //1
//-->

從CSDN看到的,分享一下微笑this

txt

相關文章
相關標籤/搜索