首先需要找到元素的下标:var array = [2, 5, 9];var index = array.indexOf(5);使用splice函数进行移除:if (index > -1) { array.splice(index, ...
確定! 回上一頁