作者 anyv
1 个管道 的构建 通过 耗费 0 秒

首页js

  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 +// }