2013年11月15日
摘要: /** * 时间对象的格式化; */Date.prototype.format = function(format) { // ◆ 使用prototype定义原型方法 /* * eg:format="YYYY-MM-dd hh:mm:ss"; */ var o = { // ◆ 键值对形式的数组。只能通过加强的for循环来迭代取值 "M+" :this.getMonth() + 1, // month "d+" :this.getDate(), // day "h+" :this.getHours(), // ho 阅读全文
posted @ 2013-11-15 22:21 快鸟 阅读(1080) 评论(0) 推荐(0) 编辑
摘要: <html> <body> </body> </html> <script> var strSrc = "xxa1b01c001yya2b02c002zz"; var regex = /a(\d)b(\d{2})c(\d{3})/gi; var arr,count=0; while((arr=reg 阅读全文
posted @ 2013-11-15 21:35 快鸟 阅读(1281) 评论(0) 推荐(0) 编辑