fix a typo
This commit is contained in:
parent
d333f8bf85
commit
0961a7893f
@ -764,7 +764,7 @@ css中用`.`来表示类。举例如下:
|
|||||||
|
|
||||||
### 2、交集选择器:定义的时候紧密相连
|
### 2、交集选择器:定义的时候紧密相连
|
||||||
|
|
||||||
定义交集选择器的时候,两个选择器之间紧密相连。一般是以标签名开头,比如`div.haha` 比如`p.special`。
|
定义交集选择器的时候,两个选择器之间紧密相连。一般是以标签名开头,比如`div.haha`,再比如`p.special`。
|
||||||
|
|
||||||
如果后一个选择器是类选择器,则写为`div.special`;如果后一个选择器id选择器,则写为`div#special`。
|
如果后一个选择器是类选择器,则写为`div.special`;如果后一个选择器id选择器,则写为`div#special`。
|
||||||
|
|
||||||
|
@ -427,7 +427,6 @@ console.log("56" > "123"); // true
|
|||||||
|
|
||||||
**因此**:当我们在比较两个字符串型的数字时,**一定一定要先转型**,比如 `parseInt()`。
|
**因此**:当我们在比较两个字符串型的数字时,**一定一定要先转型**,比如 `parseInt()`。
|
||||||
|
|
||||||
|
|
||||||
(3)任何值和NaN做任何比较都是false。
|
(3)任何值和NaN做任何比较都是false。
|
||||||
|
|
||||||
### `==`符号的强调
|
### `==`符号的强调
|
||||||
@ -447,7 +446,7 @@ console.log("56" > "123"); // true
|
|||||||
console.log(true == "1"); // 打印结果:true
|
console.log(true == "1"); // 打印结果:true
|
||||||
console.log(0 == -0); // 打印结果:true
|
console.log(0 == -0); // 打印结果:true
|
||||||
|
|
||||||
console.log(null == 0); // 打印结果:true
|
console.log(null == 0); // 打印结果:false
|
||||||
```
|
```
|
||||||
|
|
||||||
(3)undefined 衍生自 null,所以这两个值做相等判断时,会返回true。
|
(3)undefined 衍生自 null,所以这两个值做相等判断时,会返回true。
|
||||||
|
Loading…
Reference in New Issue
Block a user