摘要: function assert(bCondition, sErrorMsg) {   if (!bCondition) {      alert(sErrorMsg);      throw new Error(sErrorMsg);   } } 阅读全文
posted @ 2009-06-12 23:56 Skyman 阅读(2756) 评论(1) 推荐(0) 编辑