在html表格单元格上拖动

时间:2013-07-18 12:41:31

标签: javascript jquery html web

Fiddle

$(document).live('mouseup', function () {
    flag = false;
});

var colIndex;
var lastRow;

$(document).on('mousedown', '.csstablelisttd', function (e) {
    //This line gets the index of the first clicked row.
    lastRow = $(this).closest("tr")[0].rowIndex;

    var rowIndex = $(this).closest("tr").index();
    colIndex = $(e.target).closest('td').index();
    $(".csstdhighlight").removeClass("csstdhighlight");
    if (colIndex == 0 || colIndex == 1) //)0 FOR FULL TIME CELL AND 1 FOR TIME SLOT CELL. 
    return;
    if ($('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).hasClass('csstdred') == false) {
        $('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).addClass('csstdhighlight');

        flag = true;
        return false;
    }
});

我在表格单元格上拖动。 在拖动(向下移动)的同时,我也必须移动表滚动。 而且我想选择反向(向上方向)的单元格。 我该怎么办。

我在tr课上做了选择。

3 个答案:

答案 0 :(得分:5)

更新了jsFiddle:http://jsfiddle.net/qvxBb/2/

禁用正常选择,如下所示:

.myselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
}

使用javascript处理行选择:

// wether or not we are selecting
var selecting = false;
// the element we want to make selectable
var selectable = '.myselect tr:not(:nth-child(1)) td:nth-child(3)';

$(selectable).mousedown(function () {
    selecting = true;
}).mouseenter(function () {
    if (selecting) {
        $(this).addClass('csstdhighlight');
        fillGaps();
    }
});
$(window).mouseup(function () {
    selecting = false;
}).click(function () {
    $(selectable).removeClass('csstdhighlight');
});

// If you select too fast, js doesn't fire mousenter on all cells. 
// So we fill the missing ones by hand
function fillGaps() {
    min = $('td.csstdhighlight:first').parent().index();
    max = $('td.csstdhighlight:last').parent().index();
    $('.myselect tr:lt('+max+'):gt('+min+') td:nth-child(3)').addClass('csstdhighlight');
}

我刚刚在HTML中添加了一个类。除了我在这里展示的内容之外,所有的HTML和CSS都保持不变。

更新了jsFiddle:http://jsfiddle.net/qvxBb/2/

答案 1 :(得分:3)

你的桌子有几个问题,但我会纠正你要求的那个。
要在鼠标移出容器时使表滚动,请在mousedown事件处理程序中添加此代码:

$('body').on('mousemove', function(e){
    div = $('#divScroll');      
    if(e.pageY > div.height() && (e.pageY - div.height()) > div.scrollTop()) {
        div.scrollTop(e.pageY - div.height());
    }
});

而且,在mouseup事件处理程序中:

$('body').off('mousemove');

请参阅 updated Fiddle

但现在又出现了另一个问题。这是因为你的其余代码。未选中这些行,因为鼠标离开了列。

答案 2 :(得分:3)

尝试删除<{1}}内的

return false;

因为$('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).addClass('csstdhighlight'); flag = true; return false; //Remove this line } 会停止浏览器默认行为(自动滚动)。

DEMO