摘要:
/** * 时间对象的格式化; */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 阅读全文
摘要:
<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 阅读全文