摘要:
相同区别setIntervall 参数相同l 固定的时间后执行代码在固定间隔后一直执行SetTimeOut时间隔是一个倒数器只执行一次(也可以编写一个递归函数使其实现固定时间隔执行一次)由clearTimeout() 方法可取消由 setTimeout() 方法设置的timeout。function showTime(){ var today = new Date(); alert("The ti... 阅读全文
随笔档案-2010年08月
C# 之参数传递ref out param
2010-08-30 17:41 by 小sa, 280 阅读, 收藏, 编辑
摘要:
ref:传入前必须赋值out:返回前必须赋值param:可以不确定参数的个数 好用。 阅读全文
C#日期格式化---------<转>
2010-08-30 17:37 by 小sa, 361 阅读, 收藏, 编辑
摘要:
参数format格式详细用法:格式字符 关联属性/说明 d ShortDatePattern D LongDatePattern f 完整日期和时间(长日期和短时间) F FullDateTimePattern(长日期和长时间) g 常规(短日期和短时间) G 常规(短日期和长时间) m、M MonthDayPattern r、R RFC1123Pattern s 使用当地时间的 SortableDateTimePattern(基于 ISO 8601) t ShortTimePattern T LongTimePattern u UniversalSortableDateTimePattern 阅读全文