jQuery获取上下文?

时间:2013-01-10 12:15:12

标签: javascript jquery

拥有此代码:

 $(".toggle", '.Div1').on('click',function () 
  {
   alert("I was clicked becuase im .toggle is under the context of _________");
  });

我需要获取$(this)值所在的上下文。

如何获得_______的值?

1 个答案:

答案 0 :(得分:4)

这是不可能的。 Event对象不包含对用于绑定它的jQuery对象的任何引用。