首页 > 代码库 > 练习题:选择器和选择好友
练习题:选择器和选择好友
一、年月日选择器
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
65
66
67
68
69
70
71
72
73
74
75
76
|
< select id="nian" onclick="biantian()"></ select >年 < select id="yue" onclick="biantian()"></ select >月 < select id="tian"></ select >日 < script type="text/javascript"> FillNian(); FillYue(); FillTian(); function FillNian() { var b = new Date(); var nian = parseInt(b.getFullYear()); var str = ""; for(var i=nian-5;i< nian +6;i++) { str = str+"<option value=http://www.mamicode.com/‘"+i+"‘>"+i+"</ option >"; } document.getElementById("nian").innerHTML = str; } //月数 function FillYue() { var str = ""; for(var i=1;i< 13 ;i++) { str = str+"<option value=http://www.mamicode.com/‘"+i+"‘>"+i+"</ option >"; } document.getElementById("yue").innerHTML = str; } //每月天数的变化 function FillTian() { var yue = document.getElementById("yue").value; var nian = document.getElementById("nian").value; var ts = 31; //30号的月数 if(yue==4 || yue==6 || yue==9 || yue==11) { ts=30; } //2月不同年的天 if(yue==2) { if((nian%4==0 && nian%100 != 0) || nian%400==0) { ts = 29; } else { ts = 28; } } var str = ""; for(var i=1;i< ts +1;i++) { str = str+"<option value=http://www.mamicode.com/‘"+i+"‘>"+i+"</ option >"; } document.getElementById("tian").innerHTML = str; } function biantian() { FillTian(); } </ script > </ body > |
二、选择好友
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
|
样式: < style type="text/css"> *{ margin:0px auto; padding:0px} #wai{ width:150px; height:300px;} .list{ width:150px; height:40px; text-align:center; line-height:40px; vertical-align:middle; color:white; border:1px solid white;} .list:hover{ cursor:pointer; padding: 0px 1em !important; border-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: nowrap !important; background: none rgb(244, 244, 244) !important;">
|
练习题:选择器和选择好友
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。