此方法返回表示對象的源代碼的字符串。
注:此方法可能不會在類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))