javascript 的Array没有contains方法,有时候这会不方便,contains方法实现很简单:function contains(a, obj) { var i = a.length; while (i--) { if ...
確定! 回上一頁