我在试着和momentJS比较一下时间。这是我的脚本
$( document ).ready(function() {
var today =moment();
console.log(today.format("hh:mm"));
if((today.format('D') == (moment().day("Sunday").format('D')) || (today.format('D') == moment().day('Saturday').format('D'))))
{
$('.kompensasi').val("100,000");
$('.chk').hide();
}
else{
if((today.format("hh:mm") > moment('00:00', 'hh:mm')) && (today.format("hh:mm") < moment('03:00', 'hh:mm')))
{
$('.kompensasi').val("30,000");
$('.cekbok').val('');
}else{
$('.cekbok').val('Dapet RO 1');
$('.kompensasi').val("0");
}
}
});这是我的表格
<div class="col-sm-7">
Kompensasi : <input name="dapet" type="text" readonly class="kompensasi" />
</div>
</div>
<div class="form-group chk">
<label class="col-sm-3 control-label">Ro</label>
<div class="col-sm-7">
<input type="text" class='cekbok' name='rostatus' />
</div>
</div>我从console.log(today.format("hh:mm"))得到这个结果01:44。
使用上面的脚本,我总是转到else,所以有什么方法可以修复它吗?
这是我的小提琴https://jsfiddle.net/s9wfh9ye/33/
我提出的问题
var today =moment();
var after = moment(today.format("hh:mm")).isAfter(moment('00:00', "hh:mm"));
var before = moment(today.format("hh:mm")).isBefore(moment('03:00', "hh:mm"));
today.format('hh:mm').valueOf() -->02:17
moment('00:00', 'hh:mm').valueOf() --> 1472058000000
moment('03:00', 'hh:mm').valueOf() -->1472068800000
console.log(after); // false
console.log(before); // false发布于 2016-08-26 11:01:24
要使用==、<或>,您需要将moment转换为一个数字。为此,请使用.valueOf()。例如:
today.valueOf() < moment('03:00', 'hh:mm').valueOf()但是,moment.js还提供了可读性更好的方法:
today.isBefore(moment('03:00', 'hh:mm'))您可以使用.isBefore()、.isAfter()、.isSame()、.isSameOrBefore()等。有关更多信息,请阅读文档:http://momentjs.com/docs/#/query/
https://stackoverflow.com/questions/39157618
复制相似问题