JQuery implements the example of tr move up and down in table (super simple), jquerytable

Source: Internet
Author: User

JQuery implements the example of tr move up and down in table (super simple), jquerytable

Table Style

<Table> <tr> <td> <input type = "button" value = "Move Up" onclick = "moveUp (this) "/> </td> <input type =" button "value =" Move Down "onclick =" moveDown (this) "/> </td> </tr> <td> <input type =" button "value =" Move Up "onclick =" moveUp (this) "/> </td> <input type =" button "value =" Move Down "onclick =" moveDown (this) "/> </td> </tr> <td> <input type =" button "value =" Move Up "onclick =" moveUp (this) "/> </td> <input type =" button "value =" Move Down "onclick =" moveDown (this) "/> </td> </tr> </table>

Js Code

// Move up function moveUp (obj) {var current = $ (obj ). parent (). parent (); // obtain the current <tr> var prev = current. prev (); // obtain the current <tr> element if (current. index ()> 0) {current. insertBefore (prev); // insert it to the beginning of the current <tr> element} // Move Down function moveDown (obj) {var current = $ (obj ). parent (). parent (); // obtain the current <tr> var next = current. next (); // obtain the element next to the current <tr> if (next) {current. insertAfter (next); // insert it to the end of the current <tr> element }}

The above JQuery implementation example (ultra-simple) of tr move-up and move-down in table is all the content shared by Alibaba Cloud. I hope you can give us a reference and support the help house.

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.