JavaScript Date toUTCString()方法
时间:2019-08-20 13:50:53 来源:igfitidea点击:
说明
此方法使用通用时间约定将日期转换为字符串。
语法
Date.toUTCString ()
返回值
使用通用时间约定将转换后的日期返回字符串。
示例
将日期对象转换为字符串。
var date = new Date(); console.log(date.toUTCString()); // 返回给定日期和时间的字符串表示形式。
此方法使用通用时间约定将日期转换为字符串。
Date.toUTCString ()
使用通用时间约定将转换后的日期返回字符串。
将日期对象转换为字符串。
var date = new Date(); console.log(date.toUTCString()); // 返回给定日期和时间的字符串表示形式。