2
この関数を使用してGMT時間を取得しています。私は、関数getTimeを呼び出して、コード化されたWebページ上で警告を生成すると、Javaスクリプトを初めて使用します。任意の提案、私は窓の「document.writeを」が、その印刷何によって「警告」を交換してみてくださいウィンドウ上で時間にしてください印刷:JavaScriptからNTP時間を取得する方法
function getTime(zone, success) {
var url = 'http://json-time.appspot.com/time.json?tz=' + zone,
ud = 'json' + (+new Date());
window[ud]= function(o){
success && success(new Date(o.datetime));
};
document.getElementsByTagName('head')[0].appendChild((function(){
var s = document.createElement('script');
s.type = 'text/javascript';
s.src = url + '&callback=' + ud;
return s;
})());
}
getTime('GMT', function(time){ // This is where you do whatever you want with the time:
alert(time); });
ボグダンエミルMariesanそれ働く –
おかげで多くのことを更新しました
– wael@BogdanEmilMariesan:getTime()関数のコードはありますか? – Mou