前端的一些小知识点

in 前端 with 0 comment

1.HTML DTD会影响一些行为

document.documentElement.scrollTop //设置了DTD,取滚动条位置
document.body.scrollTop  //未设置DTD

2.JSON格式
根据RFC7159: A JSON value MUST be an object, array, number, or string, or one of the following three literal names: false null true
也就是说下面的都是合法的JSON

"Hello world!"

42

true

Comments are closed.