zoukankan      html  css  js  c++  java
  • es6 箭头函数 this 问题

    1. 在箭头函数出现之前,每个新定义的函数都有其自己的this值(例如,构造函数的 this 指向了一个新的对象;严格模式下的函数的 this 值为 undefined;如果函数是作为对象的方法被调用的,则其 this 指向了那个调用它的对象)。

    2. 箭头函数没有自己的this,不会新产生自己作用域下的this,箭头函数里面的this指向它外层的环境里的this,它没有自己的this。arguments,super和new.target等对象。此外,箭头函数总是匿名的。

    <input type="button" class="btn1" value="提交1">
    <input type="button" class="btn2" value="提交2">
    
    <script>
        $(".btn1").click(function () {
            console.log(1);
            console.log(this);// <input type="button" class="btn1" value="提交1">
        })
    
        $(".btn2").click(() => {
            console.log(2);
            console.log(this);// window
        })
    
    </script>
  • 相关阅读:
    QtDBus编程详解
    QProcess详解
    python 爬虫 亚航 指定日期间的航线
    python 模块
    centos postgres 安装、远程连接
    python 爬虫 anyproxy
    python_scrapy_filespipe重写
    python_xpath
    常见问题汇总
    python_scrapy_log日志
  • 原文地址:https://www.cnblogs.com/zhangruiqi/p/8436373.html
Copyright © 2011-2022 走看看