margin
和padding
不管是上下的还是左右的,其百分比%单位是以该容器的宽度作为计算的,与高度无关!宽度为500px,那么margin-top:1%
等同margin-top:5px;
,它是以宽度作为百分比来计算,而不是高度哦!border-width
不支持以%为单位的- 不能忽视坑爹弱等号
==
false == 0 -> true null == 0 -> false +null === 0 -> true ‘‘ == 0 -> true true == 1 -> true true == 2 -> false ‘5‘ == 5 -> true
void
运算符对任何值都返回undefined
,该运算符常用于避免输出不应该输出的值。例如:<a href="javascript:window.open(‘about:blank‘);">Click Me</a>
其中,
window.open()
返回对新打开窗口的引用,会输出字符串的,应该改为:<a href="javascript:void(window.open(‘about:blank‘));">Click Me</a>
a = [1,2,3], console.log(a, JSON.stringify(a)), a.length = 0
输出[], [1,2,3]
,证明以变量输出不以输出时的状态,而是以变量被操作最后时的状态
时间: 2024-10-13 03:33:18