摘要: 关于javascript设计模式书中的接口,记录如下 //TODO 增加了一个判断条件,可以只在生产环境中调用 接口var Interface = function(name,methods){ if(arguments.length != 2){ throw new Error('Interface constructor call with' + arguments.length + 'arguments,but expecter exactly 2.') } this.name = name; this.methods = []; for(var i = 阅读全文
posted @ 2013-09-25 20:36 独角xi 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 活动倒计时脚本,根据当前活动状态来修改活动提示及活动的时间 倒计时(function() { var $actime, $actitle, $endtime, $nowtime, $starttime, acinfo, init, timer; $actime = document.getElementById('ac-time'); $actitle = document.getEleme... 阅读全文
posted @ 2013-09-25 15:14 独角xi 阅读(319) 评论(0) 推荐(0) 编辑