我正试图让时刻只显示一个日期,如果那个日期是今天之后,但我无法让它发挥作用。这是我的代码,非常感谢任何见解!!
<html>
<p class='round3due'></p>
</html>
<script>
var r3ChangesDue = moment().isoWeekday(5 + 7).format('M-DD-YY');
$(document).ready(function() {
if (moment().isAfter(r3ChangesDue)){
$( ".round3due" ).text(r3ChangesDue);
}
else{
$( ".round3due" ).text('');
}
});
</script>