-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1 alert_click.html
35 lines (27 loc) · 923 Bytes
/
1 alert_click.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>alert from click</title>
</head>
<body>
<a href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer"
onclick="this.href=this.innerText">https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer</a>
<ul>
<li>function: alert()</li>
<li>function declaration: button_onclick</li>
<li>function: .querySelector()</li>
<li>event type: click</li>
<li>event handler assignment</li>
</ul>
<button id="button">click me</button>
<script>
// alert("message from alert");
function button_onclick() {
alert("click on the button");
}
document.querySelector("#button").onclick = button_onclick;
</script>
</body>
</html>