jQuery在函数中的`this`和`this`

时间:2016-03-31 20:31:21

标签: javascript jquery

我的代码如下:



function tell(){
  console.log(this==window);//true
  console.log($(el).html());
}

$('.elem').click(function(){
  el=this;
  console.log($(this).html());
  tell();
});




我想知道为什么tell() s this不是来自点击事件处理程序匿名函数的this

0 个答案:

没有答案