JQueryUI: Write a drag-and-drop effect for adjusting categories. [Demo]

Source: Internet
Author: User

Recently, I want to use jQuery to create a tree directory structure for a web page, and you can use the mouse to drag and adjust the options. I found plug-ins on the Internet. I have read several well-known plug-ins. I think the code is too complicated or the interface is too ugly. Therefore, we still need to work on our own, or stick to the simple code style that is beautiful.

 



Demo
Try embedding a test page in iframe. You can drag the project with the mouse to adjust the category:

Of course, this is not the final effect I want. I can only say that it has achieved a drag-and-drop effect I want. On this basis, I want to add automatic sorting and restore the jQuery event of the element bind after the position change.
Code
The Code is as follows. to copy a file, check the plain text version first!
<! DOCTYPE html>
<Html>
<Head>
<Title> Drag & Drop Test </title>
<Meta http-equiv = "content-type" content = "text/html; charset = UTF-8">
<Script type = "text/javascript"
Src = "https://readself.com/static/js/jquery.min.js? V = 52337 "> </script>
<Script type = "text/javascript"
Src = "https://readself.com/static/js/jquery-ui.min.js? V = ab482 "> </script>
<Link rel = "stylesheet" type = "text/css"
Href = "https://readself.com/static/css/smoothness/jquery-ui.css? V = af3ef "/>
<Style type = "text/css">
Li {cursor: pointer}
. Menu_hover {background-color: # d0d0d0 ;}
# Menu p {margin: 5px 0 5px 0 ;}
</Style>
<Body>
<Ul id = "menu">
<Li class = "folder">
<P> Fruits </p>
<Ul>
<Li> Apple </li>
<Li> Pear </li>
<Li> Banana </li>
</Ul>
</Li>
<Li class = "folder"> <p> Vegetables </p>
<Ul>
<Li> Tomato </li>
<Li> Potato </li>
<Li> Cucumber </li>
</Ul>
</Li>
<Li class = "folder"> <p> Meet </p>
<Ul>
<Li> Beaf </li>
<Li> Pork </li>
<Li> Chicken </li>
</Ul>
</Li>
</Ul>

<Script>
$ ('# Menu li'). disableSelection ();
$ ('Lil', $ ('# menu ul'). draggable ({revert: 'invalid', helper: 'clone '});
$ ('# Menu. folder'). droppable ({
HoverClass: "menu_hover ",
Drop: function (event, ui ){
If (ui. draggable. parents ('. folder'). get (0) ==$ (this). get (0 ))
Return;
$ ('Ul ', this). append (ui. draggable. clone ());
Ui. draggable. remove ();
$ ('Lil', this). draggable ({remove: 'invalid', helper: 'clone '});
}
});
$ ('# Menu. folder p'). click (function (){
$ (This). next (). toggle ();
});
</Script>
I am still a newbie on the webpage. You are welcome to give me some advice !!!

 


Author Xiaoxia

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.