明凯博客

关注网站技术,一个特立独行的程序员

使用JS修改CSS的方法

1.js修改单个元素的css属性。

1
2
document.getElementById("obj").className="…";
document.getElementById("obj").style.backgroundColor="#003366";

2.js修改整个页面的css属性。

1
2
3
<link rel = "stylesheet" type="text/css" id="css" href="firefox.css" />
<span on click="javascript:document.getElementByIdx('css').href=\'#\'" </span>
</span>

3.js和css的style属性对照表。
盒子标签和属性对照
CSS语法 (不区分大小写) JavaScript语法 (区分大小写)

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
border border
border-bottom borderBottom
border-bottom-color borderBottomColor
border-bottom-style borderBottomStyle
border-bottom-width borderBottomWidth
border-color borderColor
border-left borderLeft
border-left-color borderLeftColor
border-left-style borderLeftStyle
border-left-width borderLeftWidth
border-right borderRight
border-right-color borderRightColor
border-right-style borderRightStyle
border-right-width borderRightWidth
border-style borderStyle
border-top borderTop
border-top-color borderTopColor
border-top-style borderTopStyle
border-top-width borderTopWidth
border-width borderWidth
clear clear
float floatStyle
margin margin
margin-bottom marginBottom
margin-left marginLeft
margin-right marginRight
margin-top marginTop
padding padding
padding-bottom paddingBottom
padding-left paddingLeft
padding-right paddingRight
padding-top paddingTop

颜色和背景标签和属性对照
CSS语法 (不区分大小写) JavaScript语法 (区分大小写)

1
2
3
4
5
6
7
background background
background-attachment backgroundAttachment
background-color backgroundColor
background-image backgroundImage
background-position backgroundPosition
background-repeat backgroundRepeat
color color

样式标签和属性对照
CSS语法 (不区分大小写) JavaScript语法 (区分大小写)

1
2
3
4
5
6
display display
list-style-type listStyleType
list-style-image listStyleImage
list-style-position listStylePosition
list-style listStyle
white-space whiteSpace

文字样式标签和属性对照
CSS语法 (不区分大小写) JavaScript语法 (区分大小写)

1
2
3
4
5
6
font font
font-family fontFamily
font-size fontSize
font-style fontStyle
font-variant fontVariant
font-weight fontWeight

文本标签和属性对照
CSS语法 (不区分大小写) JavaScript语法 (区分大小写)

1
2
3
4
5
6
7
8
9
letter-spacing letterSpacing
line-break lineBreak
line-height lineHeight
text-align textAlign
text-decoration textDecoration
text-indent textIndent
text-justify textJustify
text-transform textTransform
vertical-align verticalAlign

4.引起css改变的js事件。
HTML 4.0 的新特性之一是有能力使 HTML 事件触发浏览器中的动作(action),比如当用户点击某个 HTML 元素时启动一段 JavaScript。下面是一个属性列表,这些属性可插入 HTML 标签来定义事件动作。
FF: Firefox, N: Netscape, IE: Internet Explorer
属性 当以下情况发生时,出现此事件 FF N IE

onabort 图像加载被中断
onblur 元素失去焦点
onchange 用户改变域的内容
onclick 鼠标点击某个对象
ondblclick 鼠标双击某个对象
onerror 当加载文档或图像时发生某个错误
onfocus 元素获得焦点
onkeydown 某个键盘的键被按下
onkeypress 某个键盘的键被按下或按住
onkeyup 某个键盘的键被松开
onload 某个页面或图像被完成加载
onreset 重置按钮被点击
onresize 窗口或框架被调整尺寸
onselect 文本被选定
onsubmit 提交按钮被点击
onunload 用户退出页面

Example:

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
<html>
<head>
<title>JavaScript changes CSS of links</title>
<script language="javascript">
function changeCss(taget) {
var nodes = document.getElementById('links').childNodes;
//alert(nodes.length);
for (var i = 0; i < nodes.length; i++) {
//alert(nodes[i].style);
if (nodes[i].tagName == 'A') {
nodes[i].style.color = 'red';
nodes[i].style.fontSize = '15px';
}
}
taget.color = 'blue';
taget.fontSize = '18px';
}
</script>
</script></head>
<body>
<div id="links">
<a href="#" style="" onclick="changeCss(this.style);">link1</a>
<a href="#" style="" onclick="changeCss(this.style);">link2</a>
<a href="#" style="" onclick="changeCss(this.style);">link3</a>
<a href="#" style="" onclick="changeCss(this.style);">link4</a>
<a href="#" style="" onclick="changeCss(this.style);">link5</a>
<a href="#" style="" onclick="changeCss(this.style);">link6</a>
</div>
</body>
</html>

, , , ,

相关文章

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注