呼叫下拉列表事件

时间:2013-10-02 11:08:30

标签: jquery

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

 $('#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;
});

1 个答案:

答案 0 :(得分:1)

使用.trigger()

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

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