bluecat_xp
Grünschnabel
Hallo Leute ich hab ein Problem, hier ist mein Code
leider funktionirt noch nicht,kann hemand mir helfen?
Danke im voraus
HTML:
//javascript
...
function CheckBox(feld)
{
if(document.form1[feld].value == 'true')
{
document.form1[feld].value = 'false';
document.images[feld].src = '../images/b1.gif';
}
else
{
document.form1[feld].value = 'true';
document.images[feld].src = '/..images/b2.gif';
}
}
....
// hier ist form
<form name="form1" method="post">
<input type="hidden" value="false" name="cb1">
<a href="#" onclick="Checkbox('cb1'); return false;"><img src="../images/b1.gif" width="52" height="52" name="cb1"/></a>
<input type="submit" value="test" />
</form>
leider funktionirt noch nicht,kann hemand mir helfen?
Danke im voraus