PHP怎样添加JS日历控件

JavaScript013

PHP怎样添加JS日历控件,第1张

日期插件的包为:mydate.js。

1:首先将日期插件的包引入到页面中

<script language="JavaScript" src="../Inc/Js/mydate.js"></script>

2:设置鼠标点击事件,当鼠标点击获得焦点的时候,触发事件,调用方法

<input type="text" name="starttime" onfocus="MyCalendar.SetDate(this)" value="<?php echo $rq?>">

<input type="text" name="endtime" onfocus="MyCalendar.SetDate(this)" value="<?php echo $rq?>">

3:完整页面代码

<?php

  date_default_timezone_set("PRC")

  $nowtime = time()

  $rq = date("Y-m-d",$nowtime)

?>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html charset=gb2312" />

<meta name="generator" content="FFKJ.Net" />

<link rev="MADE" href="mailto:[email protected]">

<title>在线--后台</title>

<link rel="stylesheet" type="text/css" href="../Skins/Admin_Style.Css" />

<script language="JavaScript" src="../Inc/Js/mydate.js"></script>

</head>

<body>

开始时间:<input type="text" name="starttime" onfocus="MyCalendar.SetDate(this)" value="<?php echo $rq?>">

结束时间:<input type="text" name="endtime" onfocus="MyCalendar.SetDate(this)" value="<?php echo $rq?>">

</body>

</html>

<HTML>

<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />

<HEAD>

<script>

function clickFunction() //任意点击时关闭该控件

{ alert(1)

with(window.event.srcElement) {

if (tagName != "INPUT" &&getAttribute("Author")==null)

document.all.meizzDateLayer.style.display="none"

}

}

function meizzWriteHead(yy,mm){} //往 head 中写入当前的年与月 { document.all.meizzYearHead.innerText = yydocument.all.meizzMonthHead.innerText = mm }

</script>

</HEAD>

<BODY onclick="clickFunction()">

<div id="main" style="width:1200pxheight:600pxmargin:autobackground-color:red"></div>

</BODY>

</HTML>