美文网首页
javascript中this总结

javascript中this总结

作者: 大胡子111 | 来源:发表于2018-12-03 23:58 被阅读15次

    1)元素身上的事件被触发的时候,会执行一个函数,函数中的this是当前元素 onclick onmouseover onmouseout
    2)自执行函数中的this永远是window
    3)回调函数中的this一般默认是window
    4)函数被调用的时候,“.”前面是谁,this就是谁
    5)构造函数中的this都是实例;
    6)当遇到apply,bind,call的时候,以上统统失效;
    7)es6箭头函数的this是指向开辟空间(父级)
    8)es6中其他函数的this是null

    相关文章

      网友评论

          本文标题:javascript中this总结

          本文链接:https://www.haomeiwen.com/subject/xlcvbftx.html