Jump to content

Orion-ua

Newbie
  • Posts

    2
  • Joined

  • Last visited

About Orion-ua

  • Birthday 02/04/1988

Information

  • Sex
    Мужчина
  • From
    Україна

Orion-ua's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Спасибо большое. Все получилось Вызов функции дописал в <body OnLoad="DateTime()">
  2. Здравствуйте. JavaScript недавно начал изучать. Интересует такой вопрос - как вставить текущую дату в блок (p, div)? Функция вынесена в файл *.js. Нужно чтобы при загрузке страницы в блок вставлялась текущая дата. Вот написал код, но что-то не получается: http://jsfiddle.net/Orion/2fgh8/1/ Помогите пожалуйста. Функция: function DateTime() { var d=new Date(); var year=d.getFullYear(); var month=d.getMonth()+1; var day=d.getDate(); var hour=d.getHours(); var min=d.getMinutes(); // add a zero in front of numbers<10 month=check(month); day=check(day); min=check(min); function check(i) { if (i<10) { i="0" + i; } return i; } FullDate=document.write(year+"-"+month+"-"+day+" "+hour+":"+min); document.getElementById('Date').innerHTML=FullDate(); }
×
×
  • 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