Javascript常用システム内蔵関数

434 ワード

1:配列指定位置に要素を挿入する
array.splice(2、 0, 「three」) //索引2の位置で、0の要素を削除し、要素「three」を挿入します.
例:
//        
var array = ["one", "two", "four"];  
// splice(position, numberOfItemsToRemove, item)  
//     (    ,         ,   )  
array.splice(2, 0, "three");  
  
0array;  //           ["one", "two", "three", "four"]