我有一个$.fn.sample = function()
被调用者,假设$('#example').sample();
在函数内部我可以在它的范围内使用“this”:
$.fn.sample = function(){
console.log($(this).width());
} //In this case, it would log the width of #example
但是假设我将悬停函数调用到另一个元素中,就像这样
$.fn.sample = function(){
console.log($(this).width());
$('#other').hover(function(){
//Here, $(this) will refer to #other
});
}
那么,在悬停函数“$(this)”内部将引用#other,有没有办法使用“父”$(this)?在这种情况下,这个悬停函数中的“#example”?