如何让约会更漂亮



我正在努力让我的约会更漂亮

看起来是这样的:2021-11-01T00:00:00.000Z

我想尝试做dd/mm/yy

还有我的代码:

<tr>
<td type="text" id="montant" name="montant">
{" "}
{element.montant / 100}€
</td>
<td type="date" id="date" name="date">
{" "}
{element.date}
</td>
</tr>

试试这个:

let date = new Date();
console.log(date.toLocaleDateString())

您可以使用外部库,如D3、moment.js或date-fns。

如果你真的不想使用任何外部库,你可以尝试以下代码:

Date.prototype.format = function(fmt) { 
var o = { 
"M+" : this.getMonth()+1,                
"d+" : this.getDate(),          
"h+" : this.getHours(),            
"m+" : this.getMinutes(),          
"s+" : this.getSeconds(),                
"q+" : Math.floor((this.getMonth()+3)/3), 
"S"  : this.getMilliseconds()          
}; 
if(/(y+)/.test(fmt)) {
fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length)); 
}
for(var k in o) {
if(new RegExp("("+ k +")").test(fmt)){
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
}
}
return fmt; 
}
// Then you can format the date object by:
console.log(new Date().format("yy/MM/dd")) // return: 21/01/14

你可以试试这个

<tr>
<td type="text" id="montant" name="montant">
{" "}
{element.montant / 100}€
</td>
<td type="date" id="date" name="date">
{" "}
{new Date(element.date).toLocaleDateString()}
</td>
</tr>

我推荐moment.js书店。有了它,你可以进行日期格式设置,而不会有太多麻烦。例如:const myFormatDate = moment (myDate) .format ('DD / MM / YYYY')

https://momentjs.com/docs/#/parsing/string-格式/

相关内容

  • 没有找到相关文章

最新更新