easyui——datebox控件限制输入的日期

Posted 赶路人儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui——datebox控件限制输入的日期相关的知识,希望对你有一定的参考价值。

可以通过calendar控件的validator方法设置。

实例:

<head>
<meta charset="UTF-8">
<title>Restrict Date Range in DateBox - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
<link rel="stylesheet" type="text/css" href="../demo.css">
<script type="text/javascript" src="../../jquery.min.js"></script>
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
</head>
<body>
<h2>Restrict Date Range in DateBox</h2>
<p>This example shows how to restrict the user to select only ten days from now.</p>
<div style="margin:20px 0;"></div>
<input id="dd"></input>
<script>
$(function()
$(#dd).datebox().datebox(calendar).calendar(
validator: function(date)
var now = new Date();
var d1 = new Date(now.getFullYear(), now.getMonth(), now.getDate());
var d2 = new Date(now.getFullYear(), now.getMonth(), now.getDate()+10);
return d1<=date && date<=d2;

);
);
</script>
</body>
</html>




以上是关于easyui——datebox控件限制输入的日期的主要内容,如果未能解决你的问题,请参考以下文章

EasyUI日历控件

easyui datebox范围设置日期对比参考 和easyui的datebox怎么禁止手动输入

EasyUi日期控件datebox,只显示年月,也只能选择年月(亲测有效,无效视频剁吊)

easyui datebox:有input1和input2两个日期控件 如何设置input2的最早选择日期范围在input1的三天前?

怎么给easyui 时间控件赋值

easyui datebox只显示年月隐藏日期的实现