最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Drag and Drop Table Rows Using Javascript - Stack Overflow

programmeradmin1浏览0评论

I'm wondering if there is a good library or script out there that trivializes drag and drop functionality for table rows in Javascript? Really the only requirement I have is that rows must be draggable within the table itself, but also to other tables on the page. I'm not too familiar with JQuery or Javascript itself, so I'd like to try and find a self contained library or script that makes the drag and drop portion pretty simple so I don't have to write the code myself. I understand JQuery is a nice Javascript library, does it have this kind of functionality?

I'm wondering if there is a good library or script out there that trivializes drag and drop functionality for table rows in Javascript? Really the only requirement I have is that rows must be draggable within the table itself, but also to other tables on the page. I'm not too familiar with JQuery or Javascript itself, so I'd like to try and find a self contained library or script that makes the drag and drop portion pretty simple so I don't have to write the code myself. I understand JQuery is a nice Javascript library, does it have this kind of functionality?

Share Improve this question asked Oct 20, 2009 at 16:23 Nate32Nate32 2512 gold badges5 silver badges12 bronze badges
Add a comment  | 

4 Answers 4

Reset to default 7

JQuery UI does it for you. Create table with tbody and thead tags. Then set for tbody the some id and use jquery ui:

$( "#table_tbody" ).sortable();
$( "#table_tbody" ).disableSelection();

Here is what you need, I edited example in a link as in Bob's answer, but for tables: Table example And code view: code view

How's this for ya?

http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/

Sounds like you want jQuery UI and the Sortable Connects demo

Most well known javascript libraries available today have a drag & drop functionality.

You could give a try to:

  • Jquery
  • Prototype + Scriptaculous: http://wiki.github.com/madrobby/scriptaculous/draggable
发布评论

评论列表(0)

  1. 暂无评论