Показать сообщение отдельно
  #6 (permalink)  
Старый 02.04.2016, 21:14
Новичок на форуме
Отправить личное сообщение для dashbog Посмотреть профиль Найти все сообщения от dashbog
 
Регистрация: 02.04.2016
Сообщений: 5

Спасибо, Профессор!
Но, все-таки, корректно работает только с добавлением нолей (функция "checkTime").
function checkTime(i) {
        return (i < 10) ? "0" + i : i;
    }

function ttt () {
	var table = document.getElementById('ttable'),
	rows = table.rows,
	currentDate = new Date,
	currentTime = checkTime(currentDate.getHours()) + ':' + checkTime(currentDate.getMinutes());
for(var i = 0, lastIndex; i < rows.length; i++) {
	if(rows[i].cells[1].innerHTML <= currentTime) {
		lastIndex = i;
		alert(currentTime);
	}
}

if(lastIndex in rows) {
	rows[lastIndex].style.backgroundColor = 'yellow';
}
}
window.onload=ttt;

Буду учиться дальше.
Ответить с цитированием