代码改变世界

jquery 扩展(增加中)

2012-05-04 18:49 by georgecrayz, 199 阅读, 0 推荐, 收藏,
摘要:; ( function ($) { $.fn.extend({ "placeholder" : function (value) { var $this = this , value = value || string.empty, defaultColor = $this.color(), textColor = "#999" ... 阅读全文

.NET 时间测试

2012-04-23 10:21 by georgecrayz, 189 阅读, 0 推荐, 收藏,
摘要:测试类:public class Timing{ TimeSpan startTime; TimeSpan duration; public Timing() { startTime = new TimeSpan(); duration = new TimeSpan(); } public void StartTime() { GC.Collect(); GC.WaitForPendingFinalizers(); startTime = Process.GetCurrentProc... 阅读全文