-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonsubmit.html
More file actions
48 lines (30 loc) · 950 Bytes
/
onsubmit.html
File metadata and controls
48 lines (30 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>onsubmit 事件</title>
<script type="text/javascript">
function staticSubmit() {
alert("静态注册!");
return false; //返回值,true 就直接提交、false 是不会提交的。做一些参数验证!
}
window.onload = function () {
var formsumbit = document.getElementById("form001");
formsumbit.onsubmit = function () {
alert("动态注册,提交参数!");
return true;
}
}
</script>
</head>
<body>
<form action="https://www.baidu.com/" method="get" onsubmit="return staticSubmit()">
<input type="submit" value="静态注册提交">
</form>
</form><br/>
<form action="https://www.baidu.com/" method="get" id="form001">
<input type="submit" value="动态注册">
</form>
</form><br/>
</body>
</html>