我有一个大数据表,我想修复标题和第一列,并允许滚动剩下的正文。
带有thead和tbody的标准html表
<table>
<thead>
<tr>
<th fix-me-on-X>ID</th>
<th fix-me-on-X>Name</th>
<th fix-me-on-Y>Subject 1</th>
<th fix-me-on-Y>Subject 2</th>
<th fix-me-on-Y>Subject 3</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in rows">
<th fix-me-on-x>ID</th>
<th fix-me-on-x>NAME</th>
<th><input /></th>
<th><input /></th>
<th><input /> ..etc</th>
</tr>
</tbody>
</table>
问题是我找到的所有jquery插件,要么已经很老了又不再工作了。或者他们打破输入的角度绑定
是否有人成功冻结了angular1中的标题和第一列?