toLocaleTimeString()
优质
小牛编辑
130浏览
2023-12-01
描述 (Description)
toLocaleTimeString()方法将日期转换为字符串,使用当前语言环境的约定返回“日期”部分。
toLocaleTimeString方法依赖于格式化日期的底层操作系统。 它使用运行脚本的操作系统的格式约定将日期转换为字符串。 例如,在美国,月份出现在日期(04/15/98)之前,而在德国,日期出现在月份之前(15.04.98)。
语法 (Syntax)
下面给出了toLocaleTimeString()方法的语法。
Date.toLocaleTimeString()
返回值 (Return Value)
以字符串格式返回格式化日期。
例子 (Example)
以下示例演示了CoffeeScript中toLocaleTimeString()方法的用法。 将此代码保存在名为date_tolocaletimestring.coffee的文件中。
dt = new Date(1993, 6, 28, 14, 39, 7);
console.log dt.toLocaleTimeString()
打开command prompt并编译.coffee文件,如下所示。
c:\> coffee -c date_tolocaletimestring.coffee
在编译时,它为您提供以下JavaScript。
// Generated by CoffeeScript 1.10.0
(function() {
var dt;
dt = new Date(1993, 6, 28, 14, 39, 7);
console.log(dt.toLocaleTimeString());
}).call(this);
现在,再次打开command prompt ,然后运行CoffeeScript文件,如下所示。
c:\> coffee date_tolocaletimestring.coffee
执行时,CoffeeScript文件生成以下输出。
2:39:07 PM