此方法傳回表示物件的原始程式碼的字串。
附註:此方法可能不會在類別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))