找到相對應的索引值後,根據索引值刪除陣列中該元素對應的值 function remove(val){ var index = indexOf(val); if(index > -1){arr.splice(index,1);} }.
確定! 回上一頁