JS中使用 new Date().Format(“YYYY-mm-dd”) 提示 Format is not a function ,是因为 format 不是一个 js 内置函数,解决办法如下:

1.换其他方式实现该功能:

new Date().toLocaleDateString().split('/').join('-');

2.下载并引用 date.format.js :https://github.com/jacwright/date.format

这是一个 js 事件处理扩展,实现了 format 函数。