Javascript教程:null类型

http://www.itjxue.com  2015-08-06 23:01  来源:未知  点击次数: 

 null 类型是第二个只有一个值的数据类型,它的值就是null ,null 值表示一个空对象指针,所以使用 typeof 操作符检测null 的时候是一个对象。 element
Font
font-family  
font-size  
font-style  
font-variant  
font-weight  
letter-spacing  
line-height  
text-decoration  
text-align  
text-indent  
text-transform  
white-space  
word-spacing  
color  
Background
bg-attachment  
bg-color  
bg-image  
bg-position  
bg-repeat  
Box
width  
height  
border-top  
border-right  
border-bottom  
border-left  
margin  
padding  
max-height  
min-height  
max-width  
min-width  
outline-color  
outline-style  
outline-width  
Positioning
position  
top  
bottom  
right  
left  
float  
display  
clear  
z-index  
List
list-style-image  
list-style-type  
list-style-position  
Table
vertical-align  
border-collapse  
border-spacing  
caption-side  
empty-cells  
table-layout  
Effects
text-shadow  
-webkit-box-shadow  
border-radius  
Other
overflow  
cursor  
visibility  
这里我们提 null 的主要目的是为了说一点,如果我们定义一个变量,而这个变量未来是用于存储对象的,此时,我们最好将这个变量初始化为 null ,这样以来,只要检测null 值就可以知道这个变量是否已经保存了一个对象的引用了。 var car = null; if(car != null){ }

(责任编辑:IT教学网)

更多

推荐Javascript/Ajax文章