$(selector).submit()
$(selector).submit(function)
参数 | 说明 |
function | 这是一个可选参数。用于指定执行Submit事件时要运行的功能。 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>submit demo</title>
<style>
p {
margin: 0;
color: blue;
}
div,p {
margin-left: 10px;
}
span {
color: red;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<p>输入'bianchenghao6' 提交,否则验证不通过。</p>
<form action="javascript:alert( 'success!' );">
<div>
<input type="text">
<input type="submit">
</div>
</form>
<span></span>
<script>
$("form").submit(function( event ) {
if( $("input:first").val() === "bianchenghao6") {
$("span").text("Submitted Successfully.").show();
return;
}
$("span").text("Not valid!").show().fadeOut( 2000 );
event.preventDefault();
});
</script>
</body>
</html>
输入'bianchenghao6' 提交,否则验证不通过。