怎么实现鼠标点击input输入框弹出一个日期选择框
最简单的方式就是使用H5里提供的新属性,用法如下:
<input type="date" >
如果你的项目里不支持H5或者H5不适用,就只能自己用JS来实现了
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../js/showdate.js"></script>
<title>js点击input弹出时间选择器代码 - xw素材网</title>
<style>
.text_time {
width: 207px;
height: 35px;
background: #ffffff;
border: 1px solid #56da9e;
}
</style>
</head>
<body>
<br>
<div style="width:520px;margin:0 auto;">
<input type="text" id="time" value="选择时间" onClick="return Calendar('time');" class="text_time" />
</div>
</div>
</body>
</html>
关键是要引入showdate.js,你必须先下载showdate.js,再在项目中引入这个JS外部文件才会生效。
2024-07-18 广告
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>点击text文本框弹出日期选择器</title>
<!--可无视-->
<style type="text/css">
body{margin:0;padding:0;font:14px Verdana, Arial, sans-serif;line-height:200%;}
#content{padding-left:50px;padding-right:50px;}
#content h2{font-size:18px;color:#1E9300;padding-top:8px;margin-bottom:8px;}
#content h3{margin-top:8px;margin-bottom:8px;FONT:bold 14px 宋体,tahoma,arial,sans-serif;COLOR:#0033CC;}
#content div{margin-top:10px;margin-bottom:10px;border:#666 solid 1px;padding:10px;}
#content span{color:#f00;font-weight:bold;}
ul, ol{color:#000000;}
</style>
<!--必要js文件/样式表已经引入在js里面了-->
<script type="text/javascript" src="lhgcore.js"></script>
<script type="text/javascript" src="lhgcalendar.js"></script>
</head>
<body>
<div id="content">
<h2>常规弹出日历示例页</h2>
<hr size="1" style="width:400px;" align="left">
<h3>1. 在控件下面或右面弹出日历组件(默认是在下面弹出) </h3>
<div>
<input type="text" id="c1" onclick="J.calendar.get();"/> 显示在下面
<input type="text" id="c2" onclick="J.calendar.get({dir:'right'});"/> 显示在右面
</div>
<h3>2. 通过按钮或图片等其它控件弹出日历组件</h3>
<div>
<input type="text" id="c3"/>
<input type="button" id="btn" onclick="J.calendar.get({id:'c3'});" value="弹出"/>
<input type="text" id="c4"/>
<img align="absmiddle" src="images/date.gif" onclick="J.calendar.get({id:'c4'});"/>
</div>
<h3>3. 显示日期的2种格式(默认为 年-月-日 格式)</h3>
<div>
<input type="text" id="c5" onclick="J.calendar.get();"/> 年-月-日 格式
<input type="text" id="c6" onclick="J.calendar.get({type:'/'});"/> 月/日/年 格式
</div>
<h3>4. 在文本框显示带时间的日期</h3>
<div>
<input type="text" id="c7" onclick="J.calendar.get({time:true});"/>
</div>
<h3>5. 日期范围限制</h3>
<div>
<input type="text" id="c8" onclick="J.calendar.get({to:'2009-8-8,min'});"/> 只能选择2009-8-8以前的日期
<input type="text" id="c9" onclick="J.calendar.get({to:'2009-8-18,max'});"/> 只能选择2009-8-18以后的日期<br/>
<input type="text" id="c10" onclick="J.calendar.get({to:'c11,min'});"/>
<input type="text" id="c11" onclick="J.calendar.get({to:'c10,max'});"/> 这2个文本框,前面的日期不能大于后面的日期,后面的不能小于前面的日期。
</div>
</div>
<div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
</div>
</body>
</html>
2016-07-24
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="http://www.my97.net/dp/My97DatePicker/WdatePicker.js"></script>
</head>
<body>
<input type="text" id="d11" onclick="WdatePicker()">
</body>
</html>
导入js直接使用,具体详细使用可参考文档