暂无 |

箭头函数里面this

箭头函数体中的 this 对象,是定义函数时的对象,而不是使用函数时的对象。


var obj = {
      name:"mumu",
      age:18,
      group:function(){
        setInterval(()=>{
          this.age++;
          console.log(this.age);
          },2000)
      }
    }
 obj.group();
 // 18
 // 19
 // ..

0

java教程
php教程
php+mysql教程
ThinkPHP教程
MySQL
C语言
css
javascript
Django教程

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论