演出排期JavaScript

<script language="JavaScript" type="text/javascript">
var diarydays="";
diarydays=diarydays+"<2008-12-13><2008-12-14>";

diarydays=diarydays+"<2008-11-15>";
diarydays=diarydays+"<2008-10-11>";
diarydays=diarydays+"<2008-12-13> <2008-12-14>";
diarydays=diarydays+"<2009-01-14>";
</script>

<style>

.calendarBigBorder { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; text-decoration: none; width: 170; background-color: #999999; font-size: 9pt;border:1px dotted #999999; }

.calendarTd { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #000000; background-color: #eeeeee; height: 18px; width: 11%; text-align: center;}

.calendarMInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; text-decoration: none; background-color: #FFFFFF; height: 15px; border: 1px solid #666666; width: 19px; color: #0099FF;}

.calendarYInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #0099FF; text-decoration: none; background-color: #FFFFFF; height: 15px; width: 34px; border: 1px solid #666666;}

.calendarMonthTitle { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; height: 24px; text-align: center; color: #333333; text-decoration: none; background-color: #eeeeee; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-bottom-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999;}

.calendarNow { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: bold; color:#FFFFFF; background-color: #CC6633; height: 18px; text-align: center;}

.calendarDaySat { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #FF3366; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;font-weight: bold;}

.calendarDaySun { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #FF3366; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;font-weight: bold;}

.calendarLink { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; color: #FFFFFF; text-decoration: none; background-color: #FF0000; text-align: center; height: 18px;font-weight: bold;}

.categoryTxt { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; line-height: 23px; color: #669900; text-decoration: none;}

.categoryTable { border-right-width: 1px; border-bottom-width: 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: none; border-right-color: #000000; border-bottom-color: #000000; border-top-width: 1px; border-top-style: solid; border-top-color: #71b99c;}

        </style>

<script language="JavaScript" type="text/javascript">

var months = new Array("一", "二", "三","四", "五", "六", "七", "八", "九","十", "十一", "十二");

var daysInMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31,30, 31, 30, 31);

var days = new Array("日","一", "二", "三","四", "五", "六");

var classTemp;

var calendarHover="calendarHover";

var today=new getToday();

var year=today.year;

var month=today.month;

var newCal;

//得到某月天数

function getDays(month, year)

{ if (1 == month)

  return ((0 == year % 4) && (0 != (year % 100))) ||(0 == year % 400) ? 29 : 28;

else

  return daysInMonth[month];

}

//得到当天时间信息

function getToday()

{ this.now = new Date();

  this.year = this.now.getFullYear();

  this.month = this.now.getMonth();

  this.day = this.now.getDate();

}

//生成日历

function Calendar()

{ newCal = new Date(year,month,1); //当前月的第一天

  today = new getToday();  

  var day = -1;   //用来判断日历中是否为当天

  var startDay = newCal.getDay(); //当月开始时间

  var endDay=getDays(newCal.getMonth(), newCal.getFullYear());//当月结束时间

  var daily = 0;   //用来生成日历中的天数值

  if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth()))

    day = today.day;

  var caltable = document.all.caltable.tBodies.calendar; //得到日历表格的集合

  var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear()); //得到当月天数

  //生成日历

  for (var intWeek = 0; intWeek < caltable.rows.length;intWeek++)

  for (var intDay = 0;intDay < caltable.rows[intWeek].cells.length;intDay++)

  {

    var cell = caltable.rows[intWeek].cells[intDay];   //得到单元袼

  //生成字符串用于判断当天是否有日志

    var montemp=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1);      

    if ((intDay == startDay) && (0 == daily)){ daily = 1;}

    var daytemp=daily<10?("0"+daily):(daily);

    var d="<"+newCal.getFullYear()+"-"+montemp+"-"+daytemp+">";

  //选择样式

    if(day==daily)

    cell.className="calendarNow";

    else if(diarydays.indexOf(d)!=-1)

      cell.className="calendarLink";

    else if(intDay==6)

    cell.className = "calendarDaySat";

    else if (intDay==0)

    cell.className ="calendarDaySun";

    else

    cell.className="calendarTd";

  //生成值

    if ((daily > 0) && (daily <= intDaysInMonth))

    { cell.innerText = daily;

      daily++;

    }

    else

    cell.innerText = "";

  }

document.all.year.value=year;

document.all.month.value=month+1;

}

function subMonth()

{

if ((month-1)<0)

{

  month=11;

year=year-1;

}

else

{

  month=month-1;

}

Calendar();

}

function addMonth()

{

if((month+1)>11)

{

  month=0;

  year=year+1;

}

else

{

  month=month+1;

}

Calendar();

}

//得到响应事

function getDiary()

{

var mon=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1);

var day=event.srcElement.innerText<10?("0"+event.srcElement.innerText):(event.srcElement.innerText);

var d="<"+newCal.getFullYear()+"-"+mon+"-"+day+">";

if ("TD" == event.srcElement.tagName)

if (("" != event.srcElement.innerText)&&(diarydays.indexOf(d)!=-1))

{

  diary.location="/yczx/searchdate.php?searchtype=title&keywords=&catid=183&areaid=0&typeid=0&fromdate="+newCal.getFullYear()+"-"+mon+"-"+day+"&todate="+newCal.getFullYear()+"-"+mon+"-"+day+"ordertype=0&search=1";
  window.location.href = diary.location;

}

}

function setDate()

{

if (document.all.month.value<1||document.all.month.value>12)

{

  alert("月的有效范围在1-12之间!");

return;

}

year=Math.ceil(document.all.year.value);

month=Math.ceil(document.all.month.value-1);

Calendar();

}

      </script>

              <table border="0" cellpadding="0" cellspacing="1" class="calendarBigBorder" id="caltable"  style="height:170px;width:200px;">

          <thead>

            <tr align="center" valign="middle">

            <td colspan="7" class="calendarMonthTitle"><input name="year" type="text" class="calendarYInput" size="3" maxlength="4"  />

              年

              <input name="month" type="text" class="calendarMInput" size="1" maxlength="2" />

              月 [<a href="javascript:;" class="STYLE11" onClick="addMonth()">下月</a>] [<a href="javascript:;" class="STYLE11" onClick="subMonth()">上月</a>]</td>

            </tr>

            <tr align="center" valign="middle">

            <script language="JavaScript" type="text/javascript">

document.write("<TD class=calendarDaySun id=diary>" + days[0] + "</TD>");

for (var intLoop = 1; intLoop < days.length-1;

intLoop++)

document.write("<TD class=calendarTd id=diary>" + days[intLoop] + "</TD>");

document.write("<TD class=calendarDaySat id=diary>" + days[intLoop] + "</TD>");

      </script>

            </tr>

          </thead>

          <tbody border="1" cellspacing="0" cellpadding="0" id="calendar" align="center" onClick="getDiary()" onMouseUp="document.selection.empty()" oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onbeforecopy="return false" oncopy="document.selection.empty()" onselect="document.selection.empty()">

            <script language="JavaScript" type="text/javascript">

for (var intWeeks = 0; intWeeks < 6; intWeeks++) {

document.write("<TR style=‘cursor:hand‘>");

for (var intDays = 0; intDays < days.length;intDays++)

document.write("<TD class=calendarTd onMouseover=‘{classTemp=this.className;this.className=calendarHover}‘ onMouseOut=‘this.className=classTemp‘></TD>");

document.write("</TR>");

}

      </script>

          </tbody>

        </table>

            <script language="JavaScript" type="text/javascript">

Calendar();

      </script>
时间: 2024-08-24 02:38:36

演出排期JavaScript的相关文章

app 耗电优化之三 使用JobSchedule对任务进行合理排期

JobSchedule 是Android5.0之后添加进去的,之前的版本没有.JobSchedule 原理是一种将任务安排在恰当的实际进行操作一种方案机制.具体提供了那些可选的时机,如下:1 在可用网络下执行.在7.0 之前,应用可以通过监听网络变化来执行任务,当然了前提是应用必须存活.到7.0之后这类API已经失效,但是JobSchedule机制提供了网络变化的监听.进一步可以在网络变化的情况下执行某些操作.例如在wifi环境下执行下载任务等.2 设备在充电或者空闲时执行一些任务.3 设定执行

项目经理排期的几个tip

互联网敏捷开发的流程可以演绎出很多玩法,但最好都遵循以下几个tip: 1, 对项目经理最重要的一条是,通读所有需求文档,跟相关PM进行彻底沟通,把需求都搞熟搞透,防止漏排任务: 2, Stroy拆分要细,每个任务都是可单独验收的: 3, 一个Stroy的排期最长不要超过三天,不然无法及时验收,会存在风险:如果Stroy很大,则继续往下拆,拆成最多三天的多个Stroy: 4, 与其他team的排期要咬合,比如第一天是server和UI,第二天的客户端,第三天是QA,要遵循这个顺序并且仅仅咬住: 5

不加班的项目从排期开始

什么是合理的开发排期?我个人以为合理的开发排期是一个项目不延期,少加班的时间管理. 在目前接触的各种项目开发中,开始时觉得时间很充足,但是后面做着做着,就变成苦逼开发加班加点赶工期,甚至项目延期.不仅仅是毕业两三年的同学,甚至有工作近十年的老司机,也会经常遇到这种情况.出现这种情况大家很自然的想到是因为项目过程中各种不确定的事情发生,导致原本预感足够的时间变得紧张起来.所以在项目进行的前期,作为开发需要给自己定一个合理的开发排期. 那么如何来做一个合理的开发排期? 一.梳理时间分布 作为主要工作

需求排期的深坑

为什么要有排期? 需求被计划以后, 需要产出合理的排期.其实个人也不喜欢排期这回事情,需求做就行了,要啥排期?要! 排期是对工作量的评估,是对资源的消耗的评估--相关人员.场地.时间都是资源.乃至个人项目,自娱自乐的需求,个人的时间不也是一种资源吗? 需求设计需要考虑排期.需求阶段就应该开始考虑排期,这样能有完整的思考脉络,需求设计方在设计的时候同事考虑排期,这样也没有人员切换和交流导致的损耗. 排期是项目管理的重要一部分.项目管理的时候,往往排期和延期比对,是一个项目施工进度的很好的参照物,也

简单好用的日历排期控件

1 <div class="mCal"> 2 <div class="dj-calendar-panel green" style="position: relative;"> 3 <div class="calendar-header"> 4 <div class="calendar-header-inner"> 5 <ul> 6 <li

Dev Express SchedulerControl 实现自定义排期

实现效果图: 整理下需要实现的目标: 1.三种颜色:当前时间之前 灰色: 当天 淡蓝色:当前时间之后,淡绿色,日期格式重写 2.appointment左对齐 3.右键appointment 弹出自定义菜单 4.鼠标移到appointment上,自定义Tooltip 5.禁用双击appointment弹出默认appointment界面,且appointment无法编辑,拖拽 代码 //1.禁用双击appointment弹出默认appointment界面,且appointment无法编辑,拖拽 th

直播排期详情

{ "result": { "status": 1, "rows": 1, "data": { "courseId": "30726", "courseName": "初一新生语文年卡阅读写作班(通用版)", "resale": "920", "description": "12

排期模板

大项目设计和管理复盘 1. 前端粒度 一级: 页面. 二级: 模块. 三级: 依赖方. 2. 后台粒度 一级: 流量入口(前台接口,后台接口,mq) 二级: 模块拆分 三级: 依赖方 (外部依赖,mq,mysql) 一级 二级 三级 功能/需求文档 产品 负责人 后端 RD 前端 RD QA 进度 FE开发 内部测试 上线 线上验证 依赖方 上线验收 遗留问题                                                                

PHP的排期软件开发

原文地址:https://www.cnblogs.com/luosong3/p/9220463.html