- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdelegate.html
More file actions
Latest commit
46 lines (44 loc) · 1.03 KB
/
Copy pathdelegate.html
File metadata and controls
46 lines (44 loc) · 1.03 KB
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
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<metaname="keywords" content="JavaScript 原生事件 事件委托"/>
<metaname="author" content="https://github.com/xiaoyunchen/JavaScriptEvent"/>
<metaname="date" content="2015年11月23日"/>
<title>JS事件委托</title>
<linkrel="stylesheet" type="text/css" href="css/delegate.css"/>
</head>
<body>
<divclass="listWrapper" id="listWrapper">
<divclass="list">
<buttonid="btn1">Add!</button>
<ulid="list1">
<liid="hello">
Hello
</li>
<liid="world">
World
</li>
<liid="welcome">
Welcome!
</li>
</ul>
</div>
<divclass="list">
<buttonid="btn2">添加!</button>
<ulid="list2">
<liid="Baidu">
Baidu
</li>
<liid="Alibaba">
Alibaba
</li>
<liid="Tencent">
Tencent
</li>
</ul>
</div>
</div>
<scriptsrc="js/delegate.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>