如何触发通过ajax加载的表单中的单击项?

时间:2019-05-15 12:20:39

标签: jquery ajax triggers

当我点击.edit-item时,表单会通过AJAX加载到我的页面上

function forms(e, el) {
  alert("ok");
  // here the ajax form is loaded, didn't paste it here because too much code
}

$('.table tbody').on( 'click', '.edit-item', function (e) {
  forms(e,this);
});

在加载的表单中有一个选择框“ change”。我要做的是,在更改时,只需再次触发.edit-item

$('#change').on('change', function(e) {
  $(".edit-item").trigger("click");
});

我现在希望ok上有一个change,但是什么也没发生。

0 个答案:

没有答案