用表头jQuery添加词缀

时间:2014-09-19 18:25:54

标签: javascript jquery

我需要修复表格标题,但始终th到窗口顶部而不是表格顶部

我有位置测试:相对但不工作,我添加div与相对和sub div绝对但不工作100%

我的code.js

$('.fix').affix({
  offset: {
    top: 100
  }
});

的CSS

.fix.affix {
    position: fixed;
    top: 40px;
    left:0;
    right:0;
    width: 100%;
}

HTML

<table style="width:50%; position:relative">

  <tr class="fix">
    <th width="33%">A</th>
    <th width="33%">B</th>
    <th width="33%">C</th>
  </tr>

  <tr>
    <td>A</td>
    <td>A</td>
    <td>A</td>
  </tr>

</table>
你有一个想法吗?感谢

0 个答案:

没有答案