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( "Formatted Date : " + dt.toSource() );
</script>
</body>
</html>
输出
Formatted Date : (new Date(743850547000))