如何检查所选日期是否是本月
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何检查所选日期是否是本月相关的知识,希望对你有一定的参考价值。
如何验证在datepicker中选择的日期是否与当前月份相同。我试过以下但是没有用。请帮我。谢谢
$('#thedate').datepicker({
minDate: 0
});
$('#checkDate').bind('click', function() {
var selectedDate = $('#thedate').datepicker('getDate');
var today = new Date();
today.setHours(0);
today.setMinutes(0);
today.setSeconds(0);
if (Date.parse(today) == Date.parse(selectedDate)) {
alert('This month');
} else {
alert('Not this month');
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
Date: <input type="text" id="thedate">
<button id="checkDate">Check this month or not</button>
答案
- 使用匹配月份值。
new Date().getMonth()
- 对于一日比赛
new Date().getDate()
更新了http://jsfiddle.net/9y36pq85/
$('#thedate').datepicker({minDate:0});
$('#checkDate').bind('click', function() {
var selectedDate = $('#thedate').datepicker('getDate');
var d= new Date(selectedDate);
var today = new Date();
if (d.getMonth() == today.getMonth()) {
alert('this month');
} else {
alert('Not this month');
}
alert(d.getDate() == today.getDate() ?'today':'not today')
});
另一答案
$('#thedate').datepicker({minDate:0});
$('#checkDate').bind('click', function() {
var selectedDate = $('#thedate').datepicker('getDate');
var current = moment(selectedDate);
if (moment().month()== current.month()) {
alert('this month');
} else {
alert('Not this month');
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
Date: <input type="text" id="thedate"/>
<button id="checkDate">Check this month or not</button>
另一答案
您可以使用Date对象的getMonth
和getYear
方法,并比较2。
就像是
$('#checkDate').bind('click', function() {
var selectedDate = $('#thedate').datepicker('getDate');
var today = new Date();
if (today.getYear() === selectedDate.getYear() && today.getMonth() === selectedDate.getMonth()) {
alert('this month');
} else {
alert('Not this month');
}
});
以上是关于如何检查所选日期是否是本月的主要内容,如果未能解决你的问题,请参考以下文章