返回值:jQuerysubmit(handler(eventObject))

选择所有提交按钮,即 type 为 submit 的元素。

:submit 选择器主要用于 button 或者 input 元素。注意,某些浏览器默认把没有设置 type 的 <button> 元素看做 type="default" ,而其他浏览器(比如IE)则并非如此。

示例:

查找所有作为 td 元素后代的提交按钮。

<!DOCTYPE html>
<html>
<head>
<style>

  p { margin:0; color:blue; }
  div,p { margin-left:10px; }
  span { color:red; }
  </style>
<script src="jquery.min.js"></script>
</head>
<body>

<p>Type 'correct' to validate.</p>
  <form action="javascript:alert('success!');">
    <div>
      <input type="text" />

      <input type="submit" />
    </div>
  </form>
  <span></span>

<script>



    $("form").submit(function() {
      if ($("input:first").val() == "correct") {
        $("span").text("Validated...").show();
        return true;
      }
      $("span").text("Not valid!").show().fadeOut(1000);
      return false;
    });


</script>
</body>
</html>
演示:

示例:

jQuery 代码:
$("form").submit( function () {
  return this.some_flag_variable;
} );

示例:

jQuery 代码:
$("form:first").submit();