我正在尝试在表单元素模糊上做一些事情。我遇到的问题是将元素的信息(例如 ID、类等)传递给第二个函数。我已经为这个例子简化了它:
function otherfunction() {
var inputID = $(this).attr("id");
alert(inputID);
}
$(".formelement").blur(function () {
// Do some stuff here
otherfunction();
});
当然,警告框说 inputID 是未定义的。如何将元素的信息传递给 otherfunction?