0
なければならない私が見てきました: Understanding offsetWidth, clientWidth, scrollWidth and -Height, respectivelyoffsetWidth:異なることが、同じ
しかし、それはそうではありません。たとえば、
.main {
width: 400px;
overflow: visible;
}
.main table {
width: 600px;
}
<div class="main">
<table>
<thead><tr><th>Foo</th><th>Bar</th></tr></thead>
<tbody>
<tr><td>Row1</td><td>Hello</td></tr>
<tr><td>Row2</td><td>World</td></tr>
</tbody>
</table>
</div>
---------------------------------------
|main |
| ----------------------------------------------------
| | table |
| ----------------------------------------------------
| |
| |
---------------------------------------
メインdiv要素のoffsetWidthとscrollWidthはそれぞれ400です。それぞれ400と600に設定する必要があります。