摘要: 数组中的元素只能为数字 // 方法一 function unique(arr) { var i = 0, item, result = [], hash = {}; for (; (item = arr[i]) != null; i++) { ... 阅读全文
posted @ 2017-05-25 15:27 Sorrow.X 阅读(131) 评论(0) 推荐(0) 编辑