正在显示
1 个修改的文件
包含
35 行增加
和
0 行删除
1 | +var Length = document.documentElement.clientWidth; | ||
2 | +var baseWidth = Length <= 1024 ? Length : 1024 < Length ? 750 : ''; | ||
3 | +document.documentElement.style.fontSize = baseWidth / 750 * 100 + 'px'; | ||
4 | + | ||
5 | + | ||
6 | +Date.prototype.Format = function (fmt) { //author: meizz | ||
7 | + var o = { | ||
8 | + "M+": this.getMonth() + 1, //月份 | ||
9 | + "d+": this.getDate(), //日 | ||
10 | + "h+": this.getHours(), //小时 | ||
11 | + "m+": this.getMinutes(), //分 | ||
12 | + "s+": this.getSeconds(), //秒 | ||
13 | + "q+": Math.floor((this.getMonth() + 3) / 3), //季度 | ||
14 | + "S": this.getMilliseconds() //毫秒 | ||
15 | + }; | ||
16 | + if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); | ||
17 | + for (var k in o) | ||
18 | + if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); | ||
19 | + return fmt; | ||
20 | +} | ||
21 | + | ||
22 | +//回退 | ||
23 | +window.onload = function(){ | ||
24 | + var $back = document.getElementsByClassName('back')[0]; | ||
25 | + if($back){ | ||
26 | + $back.onclick=function(){ | ||
27 | + window.history.back() | ||
28 | + } | ||
29 | + } | ||
30 | + | ||
31 | +} | ||
32 | + | ||
33 | +// function ajaxFun(url,data) { | ||
34 | +// | ||
35 | +// } |
-
请 注册 或 登录 后发表评论