• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Kann mir jemand erklären was das Skript macht?

Chrop

Neues Mitglied
Ist von einem Webseitentemplate

<script language = "text/Javascript">
cleared[0] = cleared[1] = cleared[2] = 0; //set a cleared flag for each field
function clearField(t){ //declaring the array outside of the
if(! cleared[t.id]){ // function makes it static and global
cleared[t.id] = 1; // you could use true and false, but that's more typing
t.value=''; // with more chance of typos
t.style.color='#fff';
}
}
</script>
 
Werbung:
Zurück
Oben