//去重, var list = new Array(); list.push("1"); list.push("1"); list.push("2"); var distinctValArr = Array.from(new Set(list))