0

可能重复:
Javascript 交换数组元素

例如,我有一个数组var arr = ['one', 'two', 'three'];,我希望将第一个键替换为第二个,我的数组应该开始看起来像['two', 'one', 'three'];我该怎么做,它需要我进行冒泡排序

4

1 回答 1

1
var arr = ['one', 'two', 'three'],
    temp;

temp = arr[1]; // temp is 'two'
arr[1] = arr[0]; // Now it is ['one', 'one', 'three']
arr[0] = temp; // And now it is ['two', 'one', 'three']

只需使用临时变量。

演示

于 2012-09-07T12:46:34.117 回答