toGMTString

種類メソッド
書式 Dateオブジェクト.toGMTString()
解説
グリニッジ標準時を返します。
サンプルコード
function sampleCode()
{
dateObj = new Date();
str = dateObj.toGMTString();
txtField.data = str;
}
sampleCode();
実際のスクリプトをダウンロード