扫码一下
查看教程更方便
toGMTString()方法使用 Internet GMT 约定将日期转换为字符串。此方法不再使用,已被 toUTCString 方法替代。
该方法的语法如下:
Date.toGMTString()
无
使用 Internet GMT 约定将日期返回到字符串。
所有主要浏览器都支持 toGMTString() 方法
<html>
<head>
<title>JavaScript toGMTString Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date(1993, 6, 28, 14, 39, 7);
document.write( "Formated Date : " + dt.toGMTString() );
</script>
</body>
</html>
输出结果:
Formated Date : Wed, 28 Jul 1993 09:09:07 GMT