0

我需要在其他地方调用下面的下拉更改事件。我该怎么做?

 $('#ddlService').change(function () {

                        if ($(this).val() !== $(this).find('option:eq(0)').attr('value')) {

                            if (petValidation()) {

                                showCommonLayout();
                                defaultLoadMethod();
                            } else {
                                hideCommonLayout();
                            }
                        }
                    });

我需要在这里调用上述事件:

$('#providerCancel').on('click', function () {

//I need to call above clouser here

  return false;
});
4

1 回答 1

1

使用.trigger()

$('#ddlService').trigger('change');

或者

$('#ddlService').change();
于 2013-10-02T11:09:22.783 回答