bootstrap-datepicker

心已入冬 提交于 2019-12-25 13:18:34

页面引入 bootstrap-datepicker.min.css bootstrap-datepicker.min.js bootstrap-datepicker.zh-CN.min.js 资源文件

<script language="javascript">
$(function(){
	$("#newstimestart").attr("readonly", "true").datepicker({
        format: "yyyy-mm-dd",
		language: "zh-CN",
		autoclose: true,
        todayHighlight: true
    });
	$("#newstimeend").attr("readonly", "true").datepicker({
        format: "yyyy-mm-dd",
		language: "zh-CN",
		autoclose: true,
        todayHighlight: true
    });
});
function dosearch(){
	var start_date=$("#newstimestart").val();
	var end_date=$("#newstimeend").val();
    if(start_date!=""&&end_date!=""){
		if(start_date>end_date){
			alert("起始日期要小于结束日期");
			return false;
		}
    }
    $("#newseditform").submit();
}
</script>
<input type="text" class="form-control" id="newstimestart"  name="newstimestart" value="${newslist.newstimestart!''}" placeholder="开始时间">
 -
 <input type="text" class="form-control" id="newstimeend"  name="newstimeend" value="${newslist.newstimeend!''}" placeholder="结束时间">
            
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!