使用类似这里的日期选择器:http://jqueryui.com/datepicker/,我想知道如何自定义它,所以如果用户在文本框中输入数字5,则datepicker会自动将日期设置为今天+5。所以,如果你想将日期设置为未来30天,你可以输入30,而datepicker将设置正确的日期。
我希望此功能是现有功能的补充,而不是替代它。
有什么想法吗?
感谢。
编辑:
以下是我正在使用的日期选择器的示例。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Restrict date range</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D" });
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker" /></p>
</body>
</html>
答案 0 :(得分:0)
也许是这样的? (做得很快,你可能需要调整 - 不要100%依赖它)
textboxVal = $('#textboxID').val();
var date = new Date($textboxVal);
function formatDate() {
var month = date.getMonth() + 1 ;
var day = date.getDate() + textboxVal;
var year = date.getFullYear();
month = month < 10 ? '0' + month : month;
day = day < 10 ? '0' + day : day;
var strDate = month + '/' + day + '/' + year;
return strDate;
}
然后将datepicker中的值设置为strDate。