.scrollHeight / .scrollWidth——内容实际高度 / 宽度(BOM)
描述:内容的实际高度,超出div内容范围的内容高度也算在内。内容高度包括padding
一、.scrollHeight——内容实际高度
写法:元素.scrollHeight
alert(oDiv.scrollHeight);
二、.scrollWidth——内容实际宽度
写法:元素.scrollWidth
alert(oDiv.scrollWidth);
描述:内容的实际高度,超出div内容范围的内容高度也算在内。内容高度包括padding
一、.scrollHeight——内容实际高度
写法:元素.scrollHeight
alert(oDiv.scrollHeight);
二、.scrollWidth——内容实际宽度
写法:元素.scrollWidth
alert(oDiv.scrollWidth);