我正在尝试使用Ajax处理多种形式。假设我有#formA和#formB。在submitForm()函数中,我具有以下内容:

function submitForm() {
  var currentForm = $(this);
  if (currentForm == "#formA") {
   //do this
  }
  else if (currentForm == "#formB"){
   //do that
  }
}


但是,这种方法不起作用。处理此问题的最佳方法是什么?
提前致谢。

最佳答案

尝试修改您的代码:

function submitForm() {
  var currentForm = $(this);
  if (currentForm.attr("id") == "formA") {
   //do this
  }
  else if (currentForm.attr("id") == "formB") {
   //do that
  }
}

08-18 22:04