Jump to content
  • 0

Вопрос по часам.


Mants
 Share

Question

Доброго времен и суток, есть скрипт часов, (скачал из файлового архива) показывает текущее время, время по гринвичу и военное время. Подскажите как военное время заменит на Московское???

<html>
<head>
<title>WOweb.ru - Scripts - JavaScript - 3 Types of Clocks</title>
<META http-equiv="Content-Type" content="text/html; charset=windows-1251">
<Style>
A:Link{ Color: #000000; Text-decoration: underline}
A:Visited{ Color: #000000; Text-decoration: underline}
A:Hover{ Color: #000000; Text-decoration: none}
td, body {font-family: verdana, arial, helvetica; font-size:11px;}
</Style>

<!-- HEAD START HERE -->


<SCRIPT LANGUAGE="javascript">
<!--


function GMTime() { // GMT function

var currgmt = new Date() // call new date to use

var gmtall = "По Гринвичу: " + currgmt.toGMTString() // Place GMT in variable

alert (gmtall) // alert the GMT

}

function normalTime() { // Local time function

var nor = new Date() // call new date to use

var minutes = nor.getMinutes() // Get minutes of the date, place in variable

var hours = nor.getHours() // Get hours of date, place in variable

var seconds = nor.getSeconds() // Get seconds of date, place in variable

var nortime = "Реальное время: " + "r" // make variable for time

nortime += ((hours > 12) ? hours - 12 : hours) // Allow nonmilitary time to show

nortime += ((minutes < 10) ? ":0" : ":") + minutes // Make the extra "0" if needed

nortime += ((seconds < 10) ? ":0" : ":") + seconds // Same as above

nortime += (hours >= 12) ? " после полудня" : " до полудня" // Show a.m., or p.m.

alert (nortime) // alert the local time

}

function militime() { // Military time function

var mil = new Date() //call new date to use

var minutes = mil.getMinutes() //Get minutes of the date, place in a variable

var hours = mil.getHours() // Get Hours of the date, place in a variable

var seconds = mil.getSeconds() // Get seconds of the date, place in a variable

var miltime = "Московское время: " + "r" // make variable for time

miltime += hours // show hours

miltime += ((minutes < 10) ? ":0" : ":") + minutes // add extra "0" if needed

miltime += ((seconds < 10) ? ":0" : ":") + seconds // add extra "0" if needed

miltime += (hours >= 12) ? " " : " " // Show a.m. or p.m.

alert (miltime) // alert the local time

}

//-->
</SCRIPT>

<!-- HEAD END HERE -->




</head>
<body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0">
<center>

<!-- BODY START HERE -->

<FORM>
<INPUT TYPE="button" Value="Время по Гринвичу" onClick="GMTime()">
<INPUT TYPE="button" Value="Тюменское время" onClick="normalTime()">
<INPUT TYPE="button" Value="Московское время" onClick="militime()">
</FORM>

<!-- BODY END HERE -->


</center>
</body>
</html>

Заранеее спасибо.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

ZoNT, В общем, у нас с Москвой два часа разница во времени, если я ставлю локальное время то и соответственно военное выставляется аналогично, а нужно чтобы на два часа меньше было, вот в чем собственно вся трабла.

Link to comment
Share on other sites

  • 0

На западе "военное" время отличается от "обычного" только двадцати четыр?х часовым форматом и для нас как раз таки и является повседневным.

Сделать московское можно так:

 var hours = nor.getHours() + nor.getTimezoneOffset()/60 + 4 // Get hours of date, place in variable

P.S. "+ 4" добавлено поскольку время сейчас летнее. По хорошему надо ещ? учитывать переход с зимнего на летнее время и наоборот. :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy