标签: 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?
tell()
this