js中this用法(1)

this的用法非常的單一,因爲他們沒有js特有的動態綁定。 function funcA() { this.name = "hello"; console.log(this.name); this.show = function() { console.log(this.name); } } funcA();// 1、hello var a = ne
相關文章
相關標籤/搜索