标签: javascript jquery
拥有此代码:
$(".toggle", '.Div1').on('click',function () { alert("I was clicked becuase im .toggle is under the context of _________"); });
我需要获取$(this)值所在的上下文。
$(this)
如何获得_______的值?
_______
答案 0 :(得分:4)
这是不可能的。 Event对象不包含对用于绑定它的jQuery对象的任何引用。