日期选择器模式向下滚动页面

时间:2016-07-26 12:24:51

标签: javascript jquery datepicker material-design

我正在使用Material Design并使用其日期选择器。弹出日期选择器时,页面向下滚动。如何在不向下滚动页面的情况下加载日期选择器模式?

<input id="client-edit-birth-date" type="text" class="datepicker validate">
   $('.datepicker').pickadate({
selectMonths: true, // Creates a dropdown to control month
selectYears: 15, // Creates a dropdown of 15 years to control year,
container: 'body'
 });

3 个答案:

答案 0 :(得分:0)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
    <link rel="stylesheet" type="text/css" media="screen" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css">
<script type="text/javascript">
$(function() {
    $('.date-picker').datepicker( {
        changeMonth: true,
        changeYear: true,
        showButtonPanel: true,
        dateFormat: 'MM yy',
        onClose: function(dateText, inst) { 
            $(this).datepicker('setDate', new Date(inst.selectedYear, inst.selectedMonth, 1));
        }
    });
});
</script>
<style>
.ui-datepicker-calendar {
    display: none;
    }
</style>
</head>
<body>
    <label for="startDate">Date :</label>
    <input name="startDate" id="startDate" class="date-picker" />
</body>
</html>

demo http://jsfiddle.net/DBpJe/5106/

答案 1 :(得分:0)

我是通过使用datepicker的beforeShow函数来实现的:

$('.datepicker').datepicker({
  ...
  beforeShow: function(input, inst)
          {
              inst.dpDiv.css({position: 'absolute'});
          }
  ...
});

在那里你可以设置datepicker对话框的位置。您必须尝试找出哪种css参数更适合您的案例/页面布局。

答案 2 :(得分:0)

我遇到了同样的问题,并通过将容器设置为html来解决了这个问题。

async-profiler