摘要:
关于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 = 阅读全文
摘要:
活动倒计时脚本,根据当前活动状态来修改活动提示及活动的时间 倒计时(function() { var $actime, $actitle, $endtime, $nowtime, $starttime, acinfo, init, timer; $actime = document.getElementById('ac-time'); $actitle = document.getEleme... 阅读全文