时间:2022-12-06 13:35:59 | 栏目:JavaScript代码 | 点击:次
此方法返回表示对象的源代码的字符串。
注:此方法可能不会在类IE的所有浏览器上正常工作。
语法
Date.toSource()
下面是参数的详细信息:
返回值:
例子:
<html> <head> <title>JavaScript toSource Method</title> </head> <body> <script type="text/javascript"> var dt = new Date(1993, 6, 28, 14, 39, 7); document.write( "Formated Date : " + dt.toSource() ); </script> </body> </html>
这将产生以下结果:
Formated Date : (new Date(743850547000))