我有两个事件,第一个事件用于添加新元素,第二个事件用于编辑元素。
如果不提交表格,我不确定如何区分它们。我需要以前的事件,以便我可以在提交事件中使用它们。由于添加和编辑有一些相同的条件,所以我没有将它们保存在单独的文件中。但对于某些条件,我必须指定这些是否适用于“添加”事件或“编辑”事件,我似乎找不到任何方法。
这是我的代码:
$('.addButton').on('click',function(){
//console.log('add event');
$('#forTest').modal('toggle');
}); //after trigerring this will go to the below submit code
$('#submitForm').on('click',function () {
// some conditions
/* where condition is same except the error message are different like for
add : this message : values are empty
edit: this message : same values are there
*/
$('#test_form').submit();
});
$('.edit-button'.on('click', function(){
$('#forTest').modal('toggle'); //edit button which will trigger to upper submit form
});
泛舟湖上清波郎朗
相关分类