我正在尝试对表单元素进行模糊处理。我遇到的问题是将元素的信息(例如ID,类等)传递给第二个函数。在本示例中,我将其简化为:

function otherfunction() {
    var inputID = $(this).attr("id");
    alert(inputID);
}


$(".formelement").blur(function () {

// Do some stuff here

otherfunction();

});

当然,警报框会显示inputID未定义。我如何才能将元素的信息传递给其他功能?

最佳答案

将输入作为参数传递:

function otherfunction(el) {
    var inputID = $(el).attr("id");
    alert(inputID);
}


$(".formelement").blur(function () {
    // Do some stuff here

    otherfunction(this);
});

或者,使用Function.prototype.apply:
function otherfunction() {
    var inputID = $(this).attr("id");
    alert(inputID);
}


$(".formelement").blur(function () {
    // Do some stuff here

    otherfunction.apply(this);
});

10-02 13:55