2009年6月5日 星期五

移除陣列中的特定元素

Remove array element in JavaScript: splice()

var aColors = new Array('red', 'yellow', 'green', 'tag');

aColors.splice(aColors.indexOf('tag'), 1);

網誌存檔