this对象

this存在任何地方,不同环境代表不同的含义,取决于调用时的环境。

A.事件处理函数中的this---触发事件的对象

document.onclick = function(){ alertthis)  }

B.普通函数中的this---window

function sum(){ alert(this)}    sum()

posted @ 2022-09-26 20:21  九毛九  阅读(22)  评论(0)    收藏  举报