代码之家  ›  专栏  ›  技术社区  ›  Anand Rockzz

获取用javascript提交的表单的实例

  •  0
  • Anand Rockzz  · 技术社区  · 14 年前

    1. 页面中可能有多个窗体

    3 回复  |  直到 14 年前
        1
  •  0
  •   Eimantas    14 年前

    对于jQuery,应该是这样的:

    $(function() {
      $('form').submit(function() {
        // the code goes here;
        // variable `this` is an instance of form
        alert($(this).className);
      });
    });
    
        2
  •  2
  •   Jon Weers    14 年前

    如果没有jQuery,情况会是这样的:

    for (var i=0; i < document.forms.length; i++){
      document.forms[i].onSubmit = function(){
        // logic goes here;
        // document.forms[i] is the instance of form
        if (formIsHappy()){
          return true; //form submits
        }else{
          return false; //prevents the submit
        }
      };
    }
    
        3
  •  0
  •   SBUJOLD    14 年前

    $("form").submit(function(e) {
        console.log("Form ID that is being submit %s",$(this).attr("id"));
    });
    

    在纯javascript中,您可以通过执行document.getElementsByTagName(“form”)并循环得到的数组来实现类似的功能。