问题:我有table
一个包装div
,overflow-y : auto
一旦table
获得焦点,滚动条就会跳起来。我怎样才能防止这种情况?
我在IE9中遇到这种行为,而不是在 Chrome 中。
请注意:我已添加tabindex
到表格中,以便它可以接收焦点。点击它后,我会务实地专注于桌子。
jsFiddle:http: //jsfiddle.net/msdevs/r6TzS/4/
- 向下滚动表格
- 单击页面上的其他元素,使表格失去焦点
- 单击表格以专注于它
- 滚动条跳起来
HTML:
<div>
<table id="tabl" tabindex="1">
<thead>
<tr>
<th style="font-weight: bold">head</th>
</tr>
</thead>
<tbody>
<tr>
<td>first</td>
</tr>
<tr>
<td>SEC</td>
</tr>
<tr>
<td>dsadfawdfadfa</td>
</tr>
<tr>
<td>dsadfawdfadfa</td>
</tr>
.
.
.
<tr>
<td>dsadfawdfadfa</td>
</tr>
</tbody>
</table>
</div>
CSS:
table {
table-layout: fixed;
font-family: arial;
font-size: 11px;
text-align: left;
outline: none;
width: 625px;
}
div {
overflow-y: auto;
overflow-x: hidden;
height: 150px;
width: 300px
}
JS:
$('table').focusin(function (e) {
console.log("table got focus - scroller jumps up");
}).click(function () {
$('table').focus();
});