如何返回一个字符串来表示一个等效的 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>
广告