如何返回表示等效 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 日

72 次浏览

开始您的 职业生涯

完成课程获取认证

开始
广告