我正在尝试使用jquery-ui-1.8.17显示和设置12个月的日期选择器日历。 在Styling the jQueryUI DatePicker的帮助下,日历最初显示正常,即它显示了3行的完整年份,每行包含4个月。 但是,当我点击日历中的某一天时,显示会跳到包含12个月的1行! 有人看到这种奇怪的行为还是有解决方案吗?
注意:在我的代码中,我包含了jquery-ui-1.8.17.custom.css。这是使用http://jqueryui.com/themeroller生成的文件。请参阅css文件中的链接。
这是完整的代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="http://www.j2u.nl/jquery-ui-1.8.17.custom.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn-history/r3982/trunk/ui/i18n/jquery.ui.datepicker-nl.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$(".datepicker").datepicker ({
dateFormat: 'dd-MM-yy',
firstDay: 1, // rows starts on Monday
minDate: new Date(),
maxDate: '+1Y',
numberOfMonths: 12
});
$(".ui-datepicker-inline").width("850px");
$(".ui-widget").css("font-size","0.9em");
});
</script>
</head>
<body>
<p><div class="datepicker"></div></p>
</body>
</html>
答案 0 :(得分:5)
<style>.ui-widget { font-size: 62.5% }</style>
<script>
$(document).ready(function(){
$(".datepicker").datepicker ({
dateFormat: 'dd-MM-yy',
firstDay: 1, // rows starts on Monday
minDate: new Date(),
maxDate: '+1Y',
numberOfMonths: [3,4]
});
});