美文网首页
what's this

what's this

作者: StarLikeRain | 来源:发表于2016-09-16 16:58 被阅读8次

问答

1、apply、call 有什么作用,什么区别

apply和call的
作用:都是为了改变函数内部的this指向
区别:fn.call(this,arg1,arg2,arg3......)
fn.apply(this,argumentsArray)
call是单个单个传入的,apply是用数组Array的形式传入的参数。


代码

1、以下代码输出什么?

var john = { 
  firstName: "John" 
}
function func() { 
  alert(this.firstName + ": hi!")
}
john.sayHi = func
john.sayHi() 
alert
这里john.sayHi = func意味着让window调用了这个函数对象,然后执行john.sayHi()自然可以取到var john = { firstName: "John" }所定义的参数了。

2、下面代码输出什么,为什么

func() 

function func() { 
  alert(this)
}
object-window.png

因为这是window调用的函数func,所以对象是window


3、下面代码输出什么

function fn0(){
    function fn(){
        console.log(this);//window
    }
    fn();
}

fn0();//这里由全局调用函数,所以this是window


document.addEventListener('click', function(e){
    console.log(this);//document,这里的this指向的就是addEventListener的对象,也就是document
    setTimeout(function(){
        console.log(this);//window
    }, 200);
}, false);

setTimeout、setInterval这两个方法执行函数对象调用的一定是全局对象

win-doc-win.png

4、下面代码输出什么,why

var john = { 
  firstName: "John" 
}

function func() { 
  alert( this.firstName )
}
func.call(john) 

用了.call()的方法,括号内传入的就是this,这里指定了是Jhon,所以alert的结果是Jhon

Jhon.png

5、代码输出?

var john = { 
  firstName: "John",
  surname: "Smith"
}

function func(a, b) { 
  alert( this[a] + ' ' + this[b] )
}
func.call(john, 'firstName', 'surname') 

涉及到.call(this,argument1,argument2,...)的使用,这里传入对象this是john,然后参数分别是firstNamesurname

Jhon Smith.png

6、以下代码有什么问题,如何修改

var module= {
  bind: function(){
    $btn.on('click', function(){
      console.log(this) //this指什么,这里this就是指触发事件的本身$btn
      this.showMsg();
    })
  },
  
  showMsg: function(){
    console.log('饥人谷');
  }
}

修改之后

<body>
<div id="btn">aaa</div>
<script>
    var $btn = $('#btn');
    var module = {
        bind: function () {
            var _this = this; //这里是关键保存住window的this
            $btn.on('click', function () {
                console.log(this); 
                _this.showMsg();//这里用了window.this
            })
        },
        showMsg: function () {
            console.log('饥人谷');//这里如果用$btn的this将无法调用
        }
    }
    module.bind();
</script>
</body>
呃...this gonna be happend

相关文章

  • What's this?

    一、apply、call 有什么作用,什么区别? 1.二者都属于function.prototype的一个方法,以...

  • What's this?

    What's this? 由于运行期绑定的特性,JavaScript 中的 this 含义非常多,它可以是全局对象...

  • what's this

    问答 1、apply、call 有什么作用,什么区别 apply和call的作用:都是为了改变函数内部的this指...

  • what's this???

    目录1.this究竟是什么2.绑定this的方法3.caller、arguments和callee 1.this究...

  • What's a good relationship s

    What's a good relationship should be? I thought through i...

  • What's like?

    我稀疏可数的感情经历还是使我明白了一些可能看上去很浅薄的道理。 喜欢一直都是两个人的事。 我们从最开始的互相喜欢,...

  • What's for dinner

    Actually, you don't need to ask your gf's opinion about w...

  • What's in iOS?

  • What's a symbol?

    In computer, the instructions of a function are stored in...

  • What's for supper?

    表达拓展 be frightened out of wits被吓昏了,吓得惊慌失措 He was be frigh...

网友评论

      本文标题:what's this

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