2

我有一个使用 jQuery 可排序插件可排序的 HTML 表:

$("#sortableinputs").sortable();

我想在此事件触发时运行代码(例如,用户拖放表的行以对其进行重新排序)。我怎样才能做到这一点?

我正在使用:

If (sortable()) {
//check if running

}

但它不起作用。感谢您的投入。

4

3 回答 3

0

您可以在 sortable 上使用停止事件:

$( ".sortableinputs" ).sortable({
  stop: function( event, ui ) {
    //your code here 
   }
 }); 
于 2013-02-27T06:41:58.960 回答
0

根据这篇文章, .sortable() 似乎遇到了一些技术困难。

于 2013-02-27T06:31:41.000 回答
0

根据文档,您可以使用可排序的开始事件。 可排序:开始

$( "#sortableinputs" ).sortable({
  start: function( event, ui ) {
 alert('here you put the code');
}
});
于 2013-02-27T06:31:13.123 回答