怎么实现鼠标点击input输入框弹出一个日期选择框

 我来答
妖艳美好
2017-12-07 · 知道合伙人软件行家
妖艳美好
知道合伙人软件行家
采纳数:66 获赞数:309

向TA提问 私信TA
展开全部

最简单的方式就是使用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外部文件才会生效。
TableDI
2024-07-18 广告
`VLOOKUP` 匹配出错误的数据通常是由于以下几个原因:1. **查找值错误**:输入的查找值与数据源中的值不匹配,可能是因为拼写错误、大小写不一致或存在不可见的字符。2. **查找区域设置错误**:查找区域的首列必须包含要查找的值,且... 点击进入详情页
本回答由TableDI提供
百度网友d0178c9
2018-04-05 · TA获得超过1639个赞
知道小有建树答主
回答量:51
采纳率:100%
帮助的人:4.5万
展开全部
  • <!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>  

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
宝宝很坏2
2017-12-05 · TA获得超过101个赞
知道答主
回答量:103
采纳率:88%
帮助的人:22.8万
展开全部
input有个<input type="date" />直接显示 望采纳..
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sunguichun2003
2016-07-24 · TA获得超过752个赞
知道小有建树答主
回答量:754
采纳率:0%
帮助的人:507万
展开全部
网上有很多这样的例子,写好的日历控件,拿来用就是了。这里输入有限制,装不下全部代码。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2016-07-24
展开全部
  你好,可以使用My97日期控件,简单示例

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直接使用,具体详细使用可参考文档
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式