1 |
wakaba |
1.1 |
|
2 |
|
|
function showl() {
|
3 |
|
|
document.styleSheets(2).addRule(".l", "display: inline");
|
4 |
|
|
}
|
5 |
|
|
function hidel() {
|
6 |
|
|
document.styleSheets(2).addRule(".l", "display: none");
|
7 |
|
|
}
|
8 |
|
|
|
9 |
|
|
function shownn() {
|
10 |
|
|
document.styleSheets(2).addRule(".t", "display: block");
|
11 |
|
|
}
|
12 |
|
|
function hidenn() {
|
13 |
|
|
document.styleSheets(2).addRule(".t", "display: none");
|
14 |
|
|
}
|
15 |
|
|
|
16 |
|
|
function init() {
|
17 |
|
|
ie.longname.onclick = showl;
|
18 |
|
|
ie.shortname.onclick = hidel;
|
19 |
|
|
ie.withname.onclick = shownn;
|
20 |
|
|
ie.withoutname.onclick = hidenn;
|
21 |
|
|
}
|
22 |
|
|
|
23 |
|
|
window.onload = init;
|