blob: a2baedefd5e390941f92df87ca92d618178adf65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>hello2</title>
</head>
<body>
<form>
<input autocomple="off" autofocus id="name" placeholder="Name" type="text">
<input type="submit">
</form>
<script>
document.querySelector('form').addEventListener('submit', function(event) {
alert('hello, ' + document.querySelector('#name').value);
event.preventDefault();
});
</script>
</body>
</html>
|