你把原来的代码:setInterval(refresh,200);
function refresh(){
Forguncy.Page.getCell("time").setValue(new Date());
}
修改成:
- setInterval(refresh,200);
- function refresh(){
- var momentNow = moment();
- $('#date-part').html(momentNow.format('YYYY MMMM DD') + ' '
- + momentNow.format('dddd')
- .substring(0,3).toUpperCase());
- $('#time-part').html(momentNow.format('A hh:mm:ss'));
- }
复制代码 应该就是系统的时间
|