Javascript Date.toSource()方法


此方法返回表示物件的原始碼的字串。

註:此方法可能不會在類IE的所有瀏覽器上正常工作。

語法

Date.toSource()

下面是引數的詳細資訊:

  • NA

返回值:

  • 對於內建日期物件,toSource返回字串string (new 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))