在前面的课程中看到过document.documentElement.xxx || document.body.xxx,这两种写法的区别
body是DOM对象里的body子节点,即 <body> 标签; documentElement 是整个节点树的根节点root,即<html> 标签;