欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

php tr拖拽

陳浩杰1年前6瀏覽0評論

在前端開發中,拖拽是常見的一種操作方式。而在后端開發中,我們也需要處理拖拽的相關操作。PHP中的TR拖拽正是一種非常實用的技術,可以實現表格內容的拖拽排序、拖拽添加等功能。

使用TR拖拽實現表格內容的排序,非常的簡單。我們只需要在頁面加載時,將表格的排序區域設置為可拖拽狀態,即可實現拖拽排序。例如下面的代碼:

<code>sortable.js
$(document).ready(function(){
$('table tbody').sortable({
helper: fixHelper,
placeholder: 'placeholder',
start: function(e, ui){
$(ui.helper).addClass('dragging').attr('start-index', $(ui.helper).index());
$('.placeholder').css({
"visibility":"visible",
"height": $(ui.helper).height()
});
},
stop: function(e, ui){
$(ui.item).removeClass('dragging').attr('stop-index', $(ui.item).index());
}
});
function fixHelper(e, ui){
ui.children().each(function(){
$(this).width($(this).width());
});
return ui;
}
});
</code>

在上面的代碼中,我們使用了jQuery的sortable插件來實現排序。我們首先將表格的tbody標簽設置為可拖拽狀態,然后在start和stop事件中進行對應的操作,比如添加或刪除某一行。同時,我們將placeholder的高度設置為拖拽對象的高度,以便于拖拽效果的視覺效果。

除了實現拖拽排序之外,我們還可以使用TR拖拽實現表格內容的拖拽添加。例如下面的代碼:

<code>droppable.js
$(document).ready(function(){
$('table tbody tr').draggable({
helper: function(event){
var $tr = $(this);
var $clone = $tr.clone();
$clone.children().each(function(index){
$(this).width($tr.children().eq(index).width());
});
return $clone;
},
start: function(e, ui){
$('.placeholder').css({
"visibility":"visible",
"height": $(ui.helper).height()
});
},
stop: function(e, ui){
$('.placeholder').css({
"visibility":"hidden",
"height": "0"
});
}
});
$('table tbody tr').droppable({
drop: function(event, ui){
var $draggedRow = $(ui.draggable);
var newRow = $draggedRow.clone();
newRow.children().each(function(index){
$(this).width($draggedRow.children().eq(index).width());
});
if($(this).hasClass('placeholder')){
newRow.insertAfter($('table tbody tr:last'));
}else if($(this).hasClass('empty')){
newRow.insertAfter($(this).prev('tr'));
}else {
if($(this).hasClass('even')){
newRow.insertAfter($(this));
$(this).next('.odd').addClass('even');
newRow.removeClass('odd').addClass('even');
}else{
newRow.insertAfter($(this));
$(this).next('.even').addClass('odd');
newRow.removeClass('even').addClass('odd');
}
}
}
});
});
</code>

在上面的代碼中,我們使用了jQuery的draggable和droppable插件來實現拖拽添加。我們首先將表格的所有行都設置為可拖拽對象,使用clone()方法來克隆拖拽對象,然后在drop事件中對拖拽所在的位置進行判斷,從而實現表格內容的拖拽添加。其中需要注意的是,因為拖拽的操作會對表格的內容也就是html結構進行更改,所以需要在拖拽結束時對拖拽對象和拖拽目標的html結構進行恢復。

總的來說,TR拖拽是一種非常實用的技術,可以在后端開發中幫助我們處理一些常見的操作,比如表格內容的排序和拖拽添加等等。通過靈活運用這個技術,我們可以為用戶提供更加舒適和便捷的用戶體驗。