Cytat
<script>
function timerOn(string) {
explode = string.split(":");
custom_date = explode[0];
custom_minutes = explode[1];
custom_seconds = explode[2];
cDate = new Date();
Hours = cDate.getHours();
Minutes = cDate.getMinutes();
Seconds = cDate.getSeconds();
document.getElemenById('time').innerHTML = Hours+':'+Minutes+':'+Seconds;
}
setInterval(timerOn, 1000);
</script>
function timerOn(string) {
explode = string.split(":");
custom_date = explode[0];
custom_minutes = explode[1];
custom_seconds = explode[2];
cDate = new Date();
Hours = cDate.getHours();
Minutes = cDate.getMinutes();
Seconds = cDate.getSeconds();
document.getElemenById('time').innerHTML = Hours+':'+Minutes+':'+Seconds;
}
setInterval(timerOn, 1000);
</script>
Oraz HTML dokładnie pod tym:
Cytat
<body onLoad="timerOn('{$time}')">
<input type="hidden" id="timer_begin" value="{$time}">
<table width="70%" align="center">
<tr><td align="center" width="86%"><B>{$action_title}</B></td> <td><img src="icons/small/clock.png"> <div id="time"></div></tr>
<tr><td style="padding: 5px 5px;" colspan="2">{$text}</td></tr>
</table>
<input type="hidden" id="timer_begin" value="{$time}">
<table width="70%" align="center">
<tr><td align="center" width="86%"><B>{$action_title}</B></td> <td><img src="icons/small/clock.png"> <div id="time"></div></tr>
<tr><td style="padding: 5px 5px;" colspan="2">{$text}</td></tr>
</table>
pytania:
1. dlaczego pisze, ze "string.split nie jest funkcja" ?
2. jezeli wywale nawet czesc rozwalania stringa, bedzie "document.getElementById nie jest funkcją"
3. czy ktos to umie naprawic?