我想做一个小函数,用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个细胞并置换它们?
编辑:
尽管如此,我还是通过你的建议完成了这个功能。它是第一次工作的bug我得到了来自c1 c2 c3变量的奇怪的bug,我不知道为什么, 有人可以帮我完成我的功能吗?
这是我的Javascript :(它包含在doc准备好的文件中)
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
答案 0 :(得分:1)
此代码将第4行td
(引用为cell[3]
)移动到第一行中的第一个单元格(cell[0]
)(并且第1行成为第4行):< / p>
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);
我写了这个函数来简化过程。它使用本机表方法。
修改表格单元格的行数(:nth-child(1)
)和索引,您可以根据需要对其进行置换。
答案 1 :(得分: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());
});
});
答案 2 :(得分: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
单击其中一个单元格,而不是另一个单元格,并看到它们已切换:)
答案 3 :(得分:0)
这可以在纯javascript中完成:
现在由您来编写脚本。