Я использую jQuery, и у меня есть функция, которая выполняет функцию обратного вызова события, и поэтому в этой функции «this» представляет объект, который захватил событие. Однако есть случай, когда я хочу явно вызвать функцию из другой функции - как мне установить, что «this» будет равно в функции в этом случае?
Например:
function handleEvent(event) {
$(this).removeClass("sad").addClass("happy");
}
$("a.sad").click(handleEvent); // in this case, "this" is the anchor clicked
function differentEvent(event) {
$("input.sad").keydown(e) {
doSomeOtherProcessing();
handleEvent(e); // in this case, "this" will be the window object
// but I'd like to set it to be, say, the input in question
}
}