当我点击.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
,但是什么也没发生。