forEach (function(v) { console.log(v); //只输出1,2 if (v === 2) throw BreakException; }); } catch (e) { if (e !== BreakException) throw e; }.
確定! 回上一頁