JavaScript Date toSource 方法
描述
该方法返回一个表示对象源代码的字符串。
注意 - 该方法可能与某些浏览器不兼容。
语法
toSource() 方法的语法如下。
Date.toSource ()
返回值
- 对于内置的 Date 对象,toSource 返回一个字符串 (new Date(…)),表示源代码不可用。
-
对于 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))