-1

このスクリプトがあり、特定のdivに追加したいと思います。今のところ、ポップアップウィンドウで警告するだけです。

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('US\/Hawaii', function(time){
    // This is where you do whatever you want with the time:
    alert(time);
});
4

1 に答える 1

1

JavaScript:

$("div#specific_id").append(time);

html:

<div id="specific_id">the time will be added after this text</div>

ドキュメントを見たほうがいいと思います

編集: @Blender は、すべてを明確にするために、この役立つスニペットを作成しました: http://jsfiddle.net/eytkU/2/

于 2012-06-30T23:36:53.817 に答える