1、描述
JavaScript date toGMTString()
方法使用GMT约定将日期转换为字符串。
这个方法不再被使用,而是被toUTCString
方法所取代。
2、语法
它的语法如下:
date.toGMTString()
3、返回值
使用Internet GMT约定将日期返回到字符串。
4、使用示例
<html>
<head>
<title>JavaScript toGMTString Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date(1989, 5, 14, 114, 39, 7);
document.write( "Formated Date : " + dt.toGMTString() );
</script>
</body>
</html>
5、输出
Formated Date : Sun, 18 Jun 1989 09:39:07 GMT