博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cssText的用法以及特点 转载至http://www.cnblogs.com/majingyi/p/6840818.html
阅读量:5081 次
发布时间:2019-06-13

本文共 5245 字,大约阅读时间需要 17 分钟。

cssText 本质是什么?

cssText 的本质就是设置 HTML 元素的 style 属性值。

cssText 怎么用?

document.getElementById("d1").style.cssText = "color:red; font-size:13px;";

cssText 返回值是什么?

在某些浏览器中(比如 Chrome),你给他赋什么值,它就返回什么值。在 IE 中则比较痛苦,它会格式化输出、会把属性大写、会改变属性顺序、会去掉最后一个分号,比如:

 
1
2
document.getElementById(
"d1"
).style.cssText = 
"color:red; font-size:13px;"
;
alert(document.getElementById(
"d1"
).style.cssText);

在 IE 中值为:FONT-SIZE: 13px; COLOR: red

cssText的使用优势

一般情况下我们用js设置元素对象的样式会使用这样的形式:

var element= document.getElementById(“id”);

element.style.width=”20px”;
element.style.height=”20px”;
element.style.border=”solid 1px red”;

样式一多,代码就很多;而且通过JS来覆写对象的样式是比较典型的一种销毁原样式并重建的过程,这种销毁和重建,都会增加浏览器的开销。

js中有一个cssText的方法:

语法为:

obj.style.cssText=”样式”;

element.style.cssText=”width:20px;height:20px;border:solid 1px red;”;

这样就可以尽量避免页面reflow,提高页面性能。

但是,这样会有一个问题,会把原有的cssText清掉,比如原来的style中有’display:none;’,那么执行完上面的JS后,display就被删掉了。

为了解决这个问题,可以采用cssText累加的方法:

Element.style.cssText += ‘width:100px;height:100px;top:100px;left:100px;’

因此,上面cssText累加的方法在IE中是无效的。

最后,可以在前面添加一个分号来解决这个问题:

Element.style.cssText += ‘;width:100px;height:100px;top:100px;left:100px;’

再进一步,如果前面有样式表文件写着 div { text-decoration:underline; },这个会被覆盖吗?不会!因为它不是直接作用于 HTML 元素的 style 属性。

具体案例分析

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
<!
DOCTYPE 
html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html 
xmlns="http://www.w3.org/1999/xhtml">
<
head
>
<
meta 
http-equiv="Content-Type" content="text/html; charset=utf-8" />
<
title
>控制div属性</
title
>
<
style
>
#outer{width:500px;margin:0 auto;padding:0;text-align:center;}
#div1{width:100px;height:100px;background:black;margin:10px auto;display:block;}
</
style
>
<
script
>
var changeStyle = function (elem, attr, value)
{
    
elem.style[attr] = value
};
window.onload = function ()
{
    
var oBtn = document.getElementsByTagName("input");
    
var oDiv = document.getElementById("div1");
    
var oAtt = ["width","height","background","display","display"];
    
var oVal = ["200px","200px","red","none","block"];
 
    
for (var i = 0; i < 
oBtn.length
; i++)
    
{
        
oBtn[i].index = i;
        
oBtn[i].onclick = function ()
        
{
            
this.index == oBtn.length - 1 && (oDiv.style.cssText = "");
            
changeStyle(oDiv, oAtt[this.index], oVal[this.index])
        
}  
    
}
};
</script>
</
head
>
<
body
>
<
div 
id="outer">
<
input 
type="button" value="变宽" />
<
input 
type="button" value="变高" />
<
input 
type="button" value="变色" />
<
input 
type="button" value="隐藏" />
<
input 
type="button" value="重置" />
<
div 
id="div1"></
div
>
</
div
>  
</
body
>
</
html
>

cssText 本质是什么?

cssText 的本质就是设置 HTML 元素的 style 属性值。

cssText 怎么用?

document.getElementById("d1").style.cssText = "color:red; font-size:13px;";

cssText 返回值是什么?

在某些浏览器中(比如 Chrome),你给他赋什么值,它就返回什么值。在 IE 中则比较痛苦,它会格式化输出、会把属性大写、会改变属性顺序、会去掉最后一个分号,比如:

 
1
2
document.getElementById(
"d1"
).style.cssText = 
"color:red; font-size:13px;"
;
alert(document.getElementById(
"d1"
).style.cssText);

在 IE 中值为:FONT-SIZE: 13px; COLOR: red

cssText的使用优势

一般情况下我们用js设置元素对象的样式会使用这样的形式:

var element= document.getElementById(“id”);

element.style.width=”20px”;
element.style.height=”20px”;
element.style.border=”solid 1px red”;

样式一多,代码就很多;而且通过JS来覆写对象的样式是比较典型的一种销毁原样式并重建的过程,这种销毁和重建,都会增加浏览器的开销。

js中有一个cssText的方法:

语法为:

obj.style.cssText=”样式”;

element.style.cssText=”width:20px;height:20px;border:solid 1px red;”;

这样就可以尽量避免页面reflow,提高页面性能。

但是,这样会有一个问题,会把原有的cssText清掉,比如原来的style中有’display:none;’,那么执行完上面的JS后,display就被删掉了。

为了解决这个问题,可以采用cssText累加的方法:

Element.style.cssText += ‘width:100px;height:100px;top:100px;left:100px;’

因此,上面cssText累加的方法在IE中是无效的。

最后,可以在前面添加一个分号来解决这个问题:

Element.style.cssText += ‘;width:100px;height:100px;top:100px;left:100px;’

再进一步,如果前面有样式表文件写着 div { text-decoration:underline; },这个会被覆盖吗?不会!因为它不是直接作用于 HTML 元素的 style 属性。

具体案例分析

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
<!
DOCTYPE 
html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html 
xmlns="http://www.w3.org/1999/xhtml">
<
head
>
<
meta 
http-equiv="Content-Type" content="text/html; charset=utf-8" />
<
title
>控制div属性</
title
>
<
style
>
#outer{width:500px;margin:0 auto;padding:0;text-align:center;}
#div1{width:100px;height:100px;background:black;margin:10px auto;display:block;}
</
style
>
<
script
>
var changeStyle = function (elem, attr, value)
{
    
elem.style[attr] = value
};
window.onload = function ()
{
    
var oBtn = document.getElementsByTagName("input");
    
var oDiv = document.getElementById("div1");
    
var oAtt = ["width","height","background","display","display"];
    
var oVal = ["200px","200px","red","none","block"];
 
    
for (var i = 0; i < 
oBtn.length
; i++)
    
{
        
oBtn[i].index = i;
        
oBtn[i].onclick = function ()
        
{
            
this.index == oBtn.length - 1 && (oDiv.style.cssText = "");
            
changeStyle(oDiv, oAtt[this.index], oVal[this.index])
        
}  
    
}
};
</script>
</
head
>
<
body
>
<
div 
id="outer">
<
input 
type="button" value="变宽" />
<
input 
type="button" value="变高" />
<
input 
type="button" value="变色" />
<
input 
type="button" value="隐藏" />
<
input 
type="button" value="重置" />
<
div 
id="div1"></
div
>
</
div
>  
</
body
>
</
html
>

转载于:https://www.cnblogs.com/ahaowh/p/8317703.html

你可能感兴趣的文章
复习文件操作
查看>>
SQL Server 使用作业设置定时任务之一(转载)
查看>>
第二阶段冲刺-01
查看>>
BZOJ1045 HAOI2008 糖果传递
查看>>
JavaScript 克隆数组
查看>>
eggs
查看>>
oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
查看>>
python3 生成器与迭代器
查看>>
java编写提升性能的代码
查看>>
list 容器 排序函数.xml
查看>>
《Genesis-3D开源游戏引擎完整实例教程-跑酷游戏篇03:暂停游戏》
查看>>
CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
查看>>
windows下编译FreeSwitch
查看>>
git .gitignore 文件不起作用
查看>>
Alan Turing的纪录片观后感
查看>>
c#自定义控件中的事件处理
查看>>
django Models 常用的字段和参数
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>