Hy
Ich habe hier folgenden java code von einer seite downgeloadet:
dieser ist aber sehr fehlerhaft und ich kann ihn nicht richtig stellen.
ich würde mir ja von irgendwo anders her so ein script organisiern, problem ist nur, dies ist das einzige, dass ich finden konnte.
somit bitte ich um eure rasche hilfe
lg alex
Ich habe hier folgenden java code von einer seite downgeloadet:
Code:
<SELECT onchange=redirect(this.options.selectedIndex) size=1 name=example>
<OPTION selected>Test 1</OPTION>
<OPTION>Test 2</OPTION>
<OPTION>Test 3</OPTION>
</SELECT>
<SELECT size=1 name=stage2>
<OPTION value=test1.htm selected>Test 1a</OPTION>
<OPTION value=test1.htm>Test 1b</OPTION>
</SELECT>
<INPUT onclick=go() type=button value=Go! name=test></P>
<SCRIPT>
<!--
var groups=document.doublecombo.example.options.length
var group=new Array(groups)
for (i=0; i<groups; i++)
group[i]=new Array()
group[0][0]=new Option("Test 1a","LinkSt.htm")
group[0][1]=new Option("Test 1b","LinkSt.htm")
//group[0][2]=new Option("Name","LinkSt.htm)
group[1][0]=new Option("Test 2a","LinkSt.htm")
group[1][1]=new Option("Test 2b","LinkSt.htm")
group[2][0]=new Option("Test 3a","LinkSt.htm")
group[2][1]=new Option("Test 3b","LinkSt.htm")
group[2][2]=new Option("Test 3c","LinkSt.htm")
group[2][3]=new Option("Arty","http://www.raubfische.de")
var temp=document.doublecombo.stage2
function redirect(x){
for (m=temp.options.length-1;m>0;m--)
temp.options[m]=null
for (i=0;i<group[x].length;i++){
temp.options[i]=new Option(group[x][i].text,group[x][i].value)
}
temp.options[0].selected=true
}
function go(){
location=temp.options[temp.selectedIndex].value
}
//-->
</SCRIPT>
dieser ist aber sehr fehlerhaft und ich kann ihn nicht richtig stellen.
ich würde mir ja von irgendwo anders her so ein script organisiern, problem ist nur, dies ist das einzige, dass ich finden konnte.
somit bitte ich um eure rasche hilfe
lg alex
Zuletzt bearbeitet von einem Moderator: