-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (39 loc) · 1.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Calendar</title>
<link rel="stylesheet" href="calendar.css">
</head>
<body>
<h1>Календарь с русскими буквами</h1>
<br>
<br>
<input type="text" class="calendar" placeholder="input 1">
<br>
<br>
<input type="text" class="calendar" placeholder="input 2">
<br>
<br>
<input type="text" class="calendar" placeholder="input 3">
<br>
<br>
<input type="text" class="calendar" placeholder="Date" value="25.06.2017">
<br>
<br>
<br>
<br>
<br>
<input type="text" class="abcde" calendar="www" placeholder="Date">
<script src="calendar.min.js"></script>
<script>
document.querySelector('.abcde').addEventListener('click',function (e) {
calendar.selectDate('3','10','1650',this.getAttribute('calendar'));
e.stopPropagation();
},false);
</script>
</body>
</html>