The example of moving up and down of the exchange array elements under JavaScript

Source: Internet
Author: User

When writing a project, you implement an example of an array record moving up and down. There is no trouble writing, nothing more than swapping array elements. The final implementation code such as

, the more important thing is the function.

Swapping array elements
var swapitems = function (arr, index1, Index2) {
ARR[INDEX1] = Arr.splice (index2, 1, arr[index1]) [0];
return arr;
};

Move Up
$scope. Uprecord = function (arr, $index) {
if ($index = = 0) {
Return
}
Swapitems (arr, $index, $index-1);
};

Move Down
$scope. Downrecord = function (arr, $index) {
if ($index = = arr.length-1) {
Return
}
Swapitems (arr, $index, $index + 1);
};


Reasonable use of that method, you can achieve the top and bottom of some implementations.

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.