Сообщение от Dlopoel
|
Нужно, чтобы когда на часах было 00 секунд, т.е. каждую минуту - цвет фона менялся
|
Например так...
<!DOCTYPE html>
<html>
<head>
<!--
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
function cl() {
var t = new Date();
if (t.getSeconds()==0) {
// меняй фон
};
document.form1.s1.value = t.toLocaleString();
setTimeout('cl()', 1000);
}
</script>
</head>
<body onload="cl()">
<center>
<form name=form1>
<input type=text size=21 name=s1 />
</form>
</center>
</body>
</html>