如何返回一个字符串来表示一个等效的 Date 对象的源?


要返回表示等效 Date 对象的源代码的字符串,请使用 JavaScript toSource() 方法。此方法返回表示该对象源代码的字符串。

示例

可以尝试运行以下代码,以返回表示等效 Date 对象的源代码的字符串 −

<html>
   <head>
      <title>JavaScript toSource() Method</title>
   </head>
   <body>
      <script>
         var dt = new Date(2018, 0, 15, 14, 39, 7);
         document.write( "Formated Date : " + dt.toSource() );
      </script>
   </body>
</html>

更新于: 2020 年 6 月 23 日

74 次观看

开启你的 职业生涯

完成课程以获得认证

开始
广告