-2

我试图在可滚动的 DIV 顶部固定可滚动的前两个 div,并且在每个可滚动的 DIV 中,我想让前两个子 div 像顶部元素一样固定。请在此处查看我的 HTML 和 CSS http://jsfiddle.net/wDmmB/2/

 var div = $('<div />');
 $('.p-r:lt(3)').each(function(){
     div.append($(this));
 }); 
 div.css({
     position:'absolute',
     top:0,
     left:0
 });
 $('.topP').append(div);
 $('.topP').scroll(function(){
   div.css({
     top : $(this).scrollTop() + "px",
     left : $(this).scrollLeft() + "px"
   });
 });

但这不起作用。我怎样才能做到这一点。请帮助我。

更新:
为了更清楚,我想在表格中实现冻结窗格功能。

4

1 回答 1

1

我不清楚你的问题,但我已经设置了一个演示

which i understand according to your problem  
于 2013-08-22T10:13:24.830 回答