2013年4月14日
摘要: Javascript中会经常用到setTimeout来推迟一个函数的执行,如:1setTimeout(function(){2alert("Hello World");3},1000);会在执行到这句话后延迟1秒钟来弹出alert窗口。那么再看这一段:1function test(){2setTim... 阅读全文
posted @ 2013-04-14 22:43 洛易 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 快一年没写web端的东西了,今天写了点东西。唉,快忘了,不过还好,基本的开发技能还是练出来了,这东西不能忘。另外在这里贴点代码,预防以后会出现类似的情况。javascript代码//列表数据 var appText = new Array(); var descText = new Array(); var countText = new Array(); $('table[name=addContainer] tr').each(function(i){ var app =... 阅读全文
posted @ 2013-04-14 20:15 洛易 阅读(2382) 评论(0) 推荐(0) 编辑