欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 前端时间选择器

程序员文章站 2024-01-21 21:01:40
...
<div class="bname fl">
		创建时间:
       <br> 
       <input type="date" id="startCreatetime" max="">
         -
        <input type="date" id="endCreatetime" max="">
</div>
<script type="text/javascript">
		//日期设置,不可选择今日之后的日期
		$(function() {
			var now = new Date();
			var year = now.getFullYear();
			var month = now.getMonth() + 1 < 10 ? "0" + (now.getMonth() + 1)
					: (now.getMonth() + 1);
			var day = now.getDate() < 10 ? "0" + now.getDate() : now.getDate();
			$("#startCreatetime").attr("max", year + "-" + month + "-" + day);
			$("#endCreatetime").attr("max", year + "-" + month + "-" + day);
		})
	</script>

 

相关标签: 时间