如何手动模拟更改触发器,而不是使用$(object).change();或$(object).bind('change')或$(object).trigger('change')

时间:2013-07-08 13:56:15

标签: javascript jquery onchange

我想模拟更改触发器。我想在最后触发我的更改代码。我想更改所有未禁用的输入。

$('selector').load().each(function () {
    if ((typeof $(this).attr("VALUE") != 'undefined') && ($(this).attr("disabled") != 'disabled')) {
        //do something ...
        //then I want to simulate Trigger with something like that:
        $(this).val(0);
        $(this).val(tmp);
        //here i want code, that will triger my code on the end 

    }
    $("selector").bind('change', function () {
        // alert("change");
        CF_change($(this), "CF", clientCulture);
        SaveData($(this).attr('id'), $(this).attr('str_id'), $(this).val(), 0, '');
    });
}

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式触发事件:

$("your_selector").change();