鼠标移动时将鼠标光标放在手柄上

时间:2013-09-25 13:49:02

标签: javascript jquery css

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

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');

 })
 })

1 个答案:

答案 0 :(得分:1)

jsFiddle 能解决问题吗?

你可能在这方面遇到了一个问题:

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

它应该是:

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

修改 链接不好。使用这个:http://jsfiddle.net/44k6c/4/