Wenn sich jemand hier gut mit java auskennt kann ermir vielleicht mal sagen was der folgende Code für ne Aufgabe hat ??
Code
<script type="text/javascript">
<!--
function showreg(userid)
{
document.np.showreg.value=userid;
document.np.submit();
}
function showhtml(seite)
{
document.s.showhtml.value=seite;
document.s.submit();
}
function changeClr(Pos, Lnk, Stat)
{
ClrOut="#ffffff";
if(Lnk==2)
{
ClrOut="#ff0000";
}
if(Lnk==23)
{
ClrOut="#ffff00";
}
if(Stat=="ov")
{
document.all.tags("td")[Pos+3].style.setAttribute("backgroundColor", "#ffffff", "true");
document.all.tags("a")[Lnk].style.setAttribute("color", "#000000", "true");
}
else
{
document.all.tags("td")[Pos+3].style.setAttribute("backgroundColor", "#003c74", "true");
document.all.tags("a")[Lnk].style.setAttribute("color", ClrOut, "true");
}
}
//-->
</script>
Alles anzeigen