Jump to content
  • 0

Форматированный вывод чисел


happyproff
 Share

Question

12 answers to this question

Recommended Posts

  • 0

а я нашел вот такое решение, криво, грязно, мерзко и противно, но что делать, я на js начал писать несколько часов назад :D

var now = new Date();
var minutes = now.getMinutes();
if (minutes < 10) {
var mins = "0" + minutes;
} else {
var mins = minutes;
}
document.write(mins);

Link to comment
Share on other sites

  • 0

ZoNT, спасибо, вс? отлично. Единственное но: пришлось каждый такой форматированный элемент выводить отдельным потоком. Так:

document.write(hours<10 ? "0"+hours : hours);
document.write(":");
document.write(minutes<10 ? "0"+minutes : minutes);

Link to comment
Share on other sites

  • 0

AKS, требуется отображать только часы и минуты. А вообще скрипт показывает:

18:46

9 апреля 2008

скрипт уже работает:

<SCRIPT LANGUAGE="JavaScript">
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();

mydate = new Date();
mymonth = mydate.getMonth();
weekday= mydate.getDate();
year= mydate.getYear();

var browser=navigator.appName
if (browser!="Microsoft Internet Explorer") {
year+= 1900;
}

if(mymonth == 0) month = "января "
else if(mymonth ==1) month = "февраля "
else if(mymonth ==2) month = "марта "
else if(mymonth ==3) month = "апреля "
else if(mymonth ==4) month = "мая "
else if(mymonth ==5) month = "июня "
else if(mymonth ==6) month = "июля "
else if(mymonth ==7) month = "августа "
else if(mymonth ==8) month = "сентября "
else if(mymonth ==9) month = "октября "
else if(mymonth ==10) month = "ноября "
else if(mymonth ==11) month = "декабря"

function To2(val) {
return (val<10 ? "0"+val : val);
}

document.write(To2(hours) + ":" + To2(minutes) + "
" + weekday + " " + month + year);s
</SCRIPT>

Спасибо

Link to comment
Share on other sites

  • 0

Метод toLocaleTimeString преобразует примитивное значение объекта дата в строку времени по местному времени с учетом локальных установок операционной системы. Формат результирующей строки зависит от локализации операционной системы и обозревателя

Link to comment
Share on other sites

  • 0

happyproff

Используйте getFullYear и не надо будет детектить браузеры.

var month = ["января ", "февраля ", "марта ", "апреля ", "мая ", "июня ", "июля ", "августа ", "сентября ", "октября ", "ноября ", "декабря"][mymonth];

выглядит куда изящнее, нежели пачка if.

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