2

我想做一个小函数,用 jQuery(或 PHP/Ajax)置换表格的 2 个单元格。假设我有下表:

<table class="table">
    <tr>
        <td class="btn" data-cellN="1">
            01
        </td>
        <td class="btn" data-cellN="2">
            02
        </td>          
    </tr>

    <tr>
        <td class="btn" data-cellN="3">
            05
        </td>
        <td class="btn" data-cellN="4">
            06
        </td>
    </tr>
</table>   

如何选择 2 个单元格并排列它们?

编辑:

不过,多亏了你的建议,我才完成了这个功能。这是第一次出现错误我从 c1 c2 c3 变量中得到一个奇怪的错误,我不知道为什么,有人可以帮我完成我的功能吗?

这是我的 Javascript:(它包含在准备好的文档中)

        var nbbuttonclicked=0; // to trigger the movecell function after the second button was clicked
        var count=0; //Number of tinme we moved a cell

        var table = {

            c1:null,
            c2:null,
            c3:null,

            check: function(){
                $('td').on('click', function(){ //When the user click on a button we verify if he already clicked on this button

                    if( $(this).hasClass('btn-info') ) {

                        //If yes, then remove the class and variable c1
                        $(this).removeClass('btn-info');
                        table.c1=0;
                        nbbuttonclicked--;

                    }else{
                        //if no, then add a class to show him it is clicked and remember the value of the cell
                        $(this).addClass('btn-info');
                        if( typeof table.c1 === 'undefined' || table.c1===null) {
                            table.c1 = $(this);
                          console.log('c1:'+table.c1.html());
                        }else{
                            table.c2 = $(this);
                          console.log('c2:'+table.c2.html());
                        }

                        nbbuttonclicked++;

                        if( nbbuttonclicked==2 ) {
                            table.movecell(table.c1,table.c2); // we trigger the function to permute the values
                        }
                    }
                });
            },

            movecell: function(c1, c2){
                //We reset that variable for the next move
                nbbuttonclicked=0;

              //we move the cells
              table.c3=c1.html();
              c1.html(c2.html());
              c2.html(table.c3)

              c1.removeClass('btn-info');
              c2.removeClass('btn-info');
              table.c1=table.c2=table.c3=c1=c2=null;

            },

            // movecell: function(c1, c2){
                // We check if the cells.html() are = to data-cellN. If yes, you won
                // foreach()
            // },

            // var row = $('table tr:nth-child(1)')[0];
            // moveCell(row, 0, 3);
        };
        table.check();

这是一个示例:http: //jsbin.com/exesof/2/edit

4

4 回答 4

1

使用 jQuery,你可以这样做:

$(document).ready(function() {

    $("table.table tbody tr td:first-child").each(function(index, element) {
    // this and element is the same    
    $(this).insertAfter($(this).next());
    });

});

假设您没有省略 tbody 元素(由某些浏览器自动添加为默认行为)

工作示例

如果您想在单击第一个单元格时执行该过程,则只需使用on单击事件而不是每个。

$(document).ready(function() {

    $("table.table tbody tr td:first-child").on('click', function(clickEvent) {
        $(this).insertAfter($(this).next());
    });

});
于 2013-03-12T13:04:06.133 回答
1

试试这个代码:

var cell0,
    cell1,
    next,
    row0,
    row1;

$('td').on('click', function() {
  if(!cell0) {
    cell0 = this;
    row0 = cell0.parentNode;
    return;
  } else if(!cell1) {
    cell1 = this;
    row1 = cell1.parentNode;

    // === Switch cells ===
    next = cell0.nextSibling;
    row1.insertBefore(cell0, cell1);
    row0.insertBefore(cell1, next);
    // ====================

    row0 = row1 = cell0 = cell1 = next = null;
  }
});

您可以在这里尝试的工作示例:http: //jsbin.com/irapeb/3/edit

单击其中一个单元格,而不是另一个单元格,然后查看它们是否已切换:)

于 2013-03-12T14:43:55.263 回答
1

此代码会将第 4 个td(引用为cell[3])移动到第一行中第一个单元格(cell[0])的位置(第 1 个变为第 4 个):

function moveCell(row, c1, c2) {
    var cell = row.cells;
        arr = [c1, c2].sort(),
        c1 = arr[1],
        c2 = arr[0];
    row.insertBefore(row.insertBefore(cell[c1], cell[c2]).nextSibling, cell[c1].nextSibling);
}

var row = $('table tr:nth-child(1)')[0];
moveCell(row, 0, 3);

http://jsfiddle.net/2N2rS/3/

我写了这个函数来简化过程。它使用本机表方法。

修改表格单元格的行数 ( :nth-child(1)) 和索引,您可以根据需要对它们进行置换。

于 2013-03-12T13:00:15.693 回答
0

这可以在纯 javascript 中完成:

  1. 获取点击卖出计数;
  2. 获取两个单元格的数据,当它们被选中时;
  3. 将单元格值替换为相反的值;
  4. 通过 ajax 调用在 DB 中存储新值。

现在由您来编写脚本。

于 2013-03-12T12:58:53.013 回答