0

我在这里构建了一个简单的表格列调整器:

http://jsfiddle.net/44k6c/

我不能为此使用插件,但我需要模仿这个插件中的功能:

http://quocity.com/colresizable/

我已经设法很好地调整了 cols 的大小,但是我的光标可以从手柄上移开(th 中的灰色框)。我需要以某种方式约束光标,使其在鼠标移动时停留在手柄上。我查看了上面插件的源代码,但它没有说明如何实现这一点。

我的 js 代码正在进行中,目前相当粗糙:

 $(document).ready(function () {

                var th,
                    previousColIndex,
                    nextColIndex,
                    previousColWidth,
                    nextColWidth,
                    thWidth,
                    currentXPos;

                $('.resize').mousedown(function(e) {
                     currentXPos = e.pageX; 
                     th = $(this).parent();
                     nextColIndex = th.index() + 1;
                     nextColWidth = $('table tr th').eq(nextColIndex).width();
                     thWidth = th.width();
                     $(document).bind('mousemove',function(e){
                         if(e.pageX < currentXPos) {
                            thWidth = thWidth - 1;
                            nextColWidth = nextColWidth + 1;
                            $('table tr td').eq(th.index()).css({'width': thWidth + 'px'});
                            th.css({'width':thWidth + 'px' });
                            $('table tr td,table tr th').eq(nextColIndex).css({'width': nextColWidth  + 'px'});
                            currentXPos = e.pageX; 
                         } else {
                            thWidth = thWidth + 1;
                            nextColWidth = nextColWidth - 1;
                            $('table tr td').eq(th.index()).css({'width': thWidth + 'px'});
                            th.css({'width':thWidth + 'px' });
                            $('table tr td,table tr th').eq(nextColIndex).css({'width': nextColWidth  + 'px'});
                            currentXPos = e.pageX; 
                         }


                     })
                }).mouseup(function(){


$(document).unbind('mousemove');


})

    $(document).mouseup(function() {
    $(document).unbind('mousemove');

 })
 })
4

1 回答 1

1

这个jsFiddle 能解决问题吗?

您可能在以下几行中遇到了问题:

thWidth = thWidth - 1;
nextColWidth = nextColWidth + 1;

它可能应该是:

thWidth = thWidth - currentXPos + e.pageX;
nextColWidth = nextColWidth + currentXPos - e.pageX;

编辑: 错误的链接。使用这个:http: //jsfiddle.net/44k6c/4/

于 2013-09-25T13:58:39.037 回答