Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
48 lines (30 loc) · 950 Bytes

File metadata and controls

48 lines (30 loc) · 950 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.