【腾讯云】云产品限时秒杀,爆款1核2G云服务器,首年99元

js 闭包

this.color = "blue";
(function(_this) {
  setInterval(function() {
    if (_this.color !== "red") {
      _this.color = "red";
    } else {
      _this.color = "blue";
    }

    console.log(_this)
  }, 1000)
})(this)

 

posted @ 2016-12-05 17:07  happenzh  阅读(90)  评论(0编辑  收藏  举报