共计 766 个字符,预计需要花费 2 分钟才能阅读完成。
先上效果:
HTML:
2
3
4
CSS:
input{
2
background:#eee;
3
display:block;
4
cursor:pointer;
5
position:relative;
6
border:none;
7
margin:10px auto;
8
}
9
div{
10
left:50%;
11
transform:translateX(-50%);
12
position:absolute;
13
border:1px solid #69c;
14
cursor:pointer;
15
display:none;
16
}
17
th,td{
18
width:30px;
19
height:10px;
20
text-align:center;
21
22
}
23
.select{
24
background:#69c;
25
color:white;
26
}
JS:
input{
2
background:#eee;
3
display:block;
4
cursor:pointer;
5
position:relative;
6
border:none;
7
margin:10px auto;
8
}
9
div{
10
left:50%;
11
transform:translateX(-50%);
12
position:absolute;
13
border:1px solid #69c;
14
cursor:pointer;
15
display:none;
16
}
17
th,td{
18
width:30px;
19
height:10px;
20
text-align:center;
21
22
}
23
.select{
24
background:#69c;
25
color:white;
26
}
原文地址: 日历 jquery
正文完