摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <script src="js/jquery-1.9.1.min.js"></script></head><body><button c 阅读全文
posted @ 2018-11-23 17:34 刘浩2561179983 阅读(218) 评论(0) 推荐(0) 编辑
摘要: Date.prototype.FormatStr = function (fmt) { //author: meizz var o = { "y+": this.getFullYear(), "M+": (this.getMonth() + 1) < 10 ? "0" + (this.getMont 阅读全文
posted @ 2018-11-23 15:58 刘浩2561179983 阅读(1550) 评论(0) 推荐(0) 编辑
摘要: function initLoading(){ var clas="A"+Math.round(Math.random()*10000); var mask="<div class="+clas+" style='position: fixed;width:100%;height:100%;left 阅读全文
posted @ 2018-11-23 15:09 刘浩2561179983 阅读(451) 评论(0) 推荐(0) 编辑
摘要: String.prototype.toWeek=function(){ var date = new Date(this); var week = ""; switch (date.getDay()) { case 0:week = "周日";break; case 1:week = "周一";br 阅读全文
posted @ 2018-11-23 14:54 刘浩2561179983 阅读(394) 评论(0) 推荐(0) 编辑