-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (48 loc) · 1.3 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moni.js Test</title>
<style>
.active {
background-color: red;
}
</style>
</head>
<body>
<form action="" enctype="multipart/form-data">
<input type="text" name="username" id="username" />
<input type="email" name="email" id="email">
<button type="submit">Submit</button>
</form>
<div id="div">
<button class="btn">click me</button>
<p>Here the p goes</p>
</div>
<script src="./dist/moni.umd.js"></script>
<script>
moni.loaded(() => {
moni('button.btn').on('click', function () {
moni('#div').find('p').after('<div class="ok">OK</div>')
});
moni('div').on('click', 'div.ok', function () {
moni(this).text('text goes here')
const text = moni(this).text();
console.log({
text
})
});
moni('form').on('submit', function (e) {
e.preventDefault();
// following one works
// const values = moni(this).values();
// console.log(values);
// the following one does not works
const values = moni(this).values();
console.log(values);
});
})
</script>
</body>
</html>