-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdate.html
38 lines (34 loc) · 873 Bytes
/
date.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title></title>
<link rel="stylesheet" href="css/datepicker_o.css"/>
<script src="js/jquery-1.9.1.js"></script>
<script src="js/iscroll.js"></script>
<script src="js/dateH5.js"></script>
<style>
.kbtn {
display: block;
width: 200px;
height: 26px;
margin: 100px auto;
border: 1px solid #000;
}
</style>
</head>
<body>
<input type="text " id="beginTime" class="kbtn"/>
<input type="text " class="kbtn" id="kbtn1" />
<div id="datePlugin"></div>
</body>
<script>
$(function(){
$('#beginTime').focus(function(){
$(this).date();
});
$('#kbtn1').date({theme:"datetime"});
});
</script>
</html>