JavaScript提供了一个内置的Date对象,可以方便地获取当前的日期和时间。下面是一个获取当前时间的年月日时分秒的JavaScript函数:

function getCurrentTime() {

const now = new Date();

const year = now.getFullYear();

const month = ('0' + (now.getMonth() + 1)).slice(-2);

const day = ('0' + now.getDate()).slice(-2);

const hours = ('0' + now.getHours()).slice(-2);

const minutes = ('0' + now.getMinutes()).slice(-2);

const seconds = ('0' + now.getSeconds()).slice(-2);

return `${year}${month}${day}${hours}${minutes}${seconds}`;

}

在这个函数中,我们首先创建了一个Date对象,然后使用它的内置方法获取当前的年、月、日、时、分和秒。需要注意的是,在月、日、时、分和秒的值小于10时,我们使用了一个简单的技巧将它们转换为两位数。