上移 下移功能

2021-07-09 09:36:43 字數 1146 閱讀 3424

實現資料的上移和下移功能

實現效果如下:

功能實現過程為:上移和下移是交換兩條資料的位置序號。我將主要業務放在service,具體操作放在dao中。

上移的service層**:

public void moveup(long id) 

//交換position的值

int temp = forum.getposition();

forum.setposition(other.getposition());

other.setposition(temp);

//更新到資料庫中

forumdao.update(forum);

forumdao.update(other);

}

上移的dao層**:

/**

* 限定查詢:板塊向上移動.

* @param position

* @return

*/public forum createlimitqueryup(int position)

下移的service層**:

public void movedown(long id) 

//交換position的值

int temp = forum.getposition();

forum.setposition(other.getposition());

other.setposition(temp);

//更新到資料庫中

forumdao.update(forum);

forumdao.update(other);

}

下移的dao層**:

/**

* 限定查詢:板塊向下移動

* @param position

* @return

*/public forum createlimitquerydown(int position)

這些是實現上下移動的主要**。

js上移下移功能

今天分享一下專案裡面用到的乙個小功能,實現上移下移的功能。這裡樣式的話就不寫了,可以根據自己的需求來定義,主要的還是邏輯部分。var moveupordown 500 當前節點的父節點的上乙個兄弟節點運動實現下移效果 t parents bar prev stop animate 500,funct...

ListBox 上移下移

前台html div style width 600px margin 0px auto div style float left asp listbox id lsboxhotword runat server height 300px asp listbox div div style floa...

Flex中List實現上移下移功能

我們在html中可以用js實現selecte框中內容的上移下移。昨天在專案中需要用flex來實現這個功能。研究了一下 不難。下面是具體實現 xmlns s library xmlns mx library width 100 height 100 0 private function down vo...