document.body 与document.getElementByIdx_x()区别:
document.body 是返回body对象,
document.getElementById()是根据元素ID查到对象并且返回这个对象
如果你的body定义了一个id=dd
那document.body跟document.getElementByIdx_x("dd")就是同一个对象
js如何 设置某个对象的高度,如div 等:
document.getElementByIdx_x("divId").style.height="200px";document.getElementByIdx_x("divId").style.width="200px";