G
Guest
<form name=f>
<input type=text name="apple[]" value=1>
</form>
<script>
document.f.apple[].value=2
</script>
///////////////////////////
this generates an script error in IE
because of apple[]
so how do I get around the error?
(must use "apple[]" for server cgi)
thanks in advance
<input type=text name="apple[]" value=1>
</form>
<script>
document.f.apple[].value=2
</script>
///////////////////////////
this generates an script error in IE
because of apple[]
so how do I get around the error?
(must use "apple[]" for server cgi)
thanks in advance