前端怎么把date格式转为string

2024-12-22 20:12:48
推荐回答(1个)
回答1:

Date对象转字符串有以下转换函数 :


toString()    把 Date 对象转换为字符串。    

toTimeString()    把 Date 对象的时间部分转换为字符串。    

toDateString()    把 Date 对象的日期部分转换为字符串。    

toGMTString()    请使用 toUTCString() 方法代替。    

toUTCString()    根据世界时,把 Date 对象转换为字符串。    

toLocaleString()    根据本地时间格式,把 Date 对象转换为字符串。    

toLocaleTimeString()    根据本地时间格式,把 Date 对象的时间部分转换为字符串。    

toLocaleDateString()    根据本地时间格式,把 Date 对象的日期部分转换为字符串。    


如果是单纯的转为字符串 可以用 toString()

eg: 

    var date = new Date();
    document.write(data.toString());

望采纳