|
我 的 日 历 |
|
最 新 评 论 |
|
友 情 链 接 |
|
搜 索 日 志 |
|
访 问 计 数 |
|
获 取 R S S |
|
|
javascript 对 CSS 的控制 [2006-3-17] jybbh 发表在 WEB相关
| document.styleSheets[0].rules[0].style.cssText
document.styleSheets.length
document.styleSheets[0].rules.length
document.styleSheets[0].rules[2].selectorText
document.styleSheets[0].addRule(".table_type","color:blue;font-size:27px",-1);
document.styleSheets[0].addRule(".table_type","font-style:italic",-1);
document.styleSheets[0].addRule(".table_type","font-size:27px",-1);
document.styleSheets[0].addRule(".table_type","font-weight:bolder",-1);
document.styleSheets[0].href="/template/otherStyleSheet.css";
document.styleSheets.length
document.styleSheets[0].rules.length
document.getElementById("id").style.fontSize="27px"; | | |
|