誰かが私に(システム)時計を使って特定のものを表示することは可能かどうか尋ねましたか?私はhttp://json-time.appspot.com/time.jsonを使用しています
例:時計が月曜日から木曜日の間にある場合は、「message1」を表示します。金曜日と日曜日の間に「message2」を表示します。
私が持っているのは:
<script type="text/javascript">
$(document).ready(function(){
var timezone = "Europe/Berlin";
$.getJSON("http://json-time.appspot.com/time.json?tz="+timezone+"&callback=?",
function(data){
if (data.datetime < ??) { // what do I have to do here?
alert ("It's monday-thursday in "+timezone);
} else {
alert ("It's friday-sunday in "+timezone);
}
})
});
</script>
「??」とは何の関係があるのですか??どんな助けでも大歓迎です