如何获取多日期选取器 MDP 的总天数



我从这里使用Multidatepicker MDP。
我想获取用户选择的总天数,并将其放入输入文本中。

例如,如果用户选择 2 天,则总数为 2。
和输入类型文本的总输入。

这是我的 JS

$('#mdp-demo').multiDatesPicker({
numberOfMonths: [1,2],
altField: '#altField',
minDate: 2,
});

谢谢你的回答

使用您链接的网站中的信息: http://dubrox.github.io/Multiple-Dates-Picker-for-jQuery-UI/#demo-ui-calendar-methods

您可以指定onSelect方法来响应选择。
要获取所选日期的数组,您可以使用记录$('#mdp-demo').multiDatesPicker('getDates')

如果您只关心所选日期的数量,则可以简单地使用数组的.length

我以前从未使用过这个组件,但是将以下文档中的信息解析在一起似乎有效。根据需要进行调整。

$('#mdp-demo').multiDatesPicker({
numberOfMonths: [1, 2],
altField: '#altField',
minDate: 2,
onSelect: function(){
$('#numberSelected').val($('#mdp-demo').multiDatesPicker('getDates').length);
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://code.jquery.com/ui/1.12.1/themes/pepper-grinder/jquery-ui.css" rel="stylesheet" />
<link href="https://cdn.rawgit.com/dubrox/Multiple-Dates-Picker-for-jQuery-UI/master/jquery-ui.multidatespicker.css" rel="stylesheet" />
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdn.rawgit.com/dubrox/Multiple-Dates-Picker-for-jQuery-UI/master/jquery-ui.multidatespicker.js"></script>
<div>
<span>Number Of Days Selected</span>
<input id="numberSelected" type="text"/>
</div>
<br/>
<div id="mdp-demo"></div>

相关内容

  • 没有找到相关文章

最新更新