romero: document.getElementById( "..." ).onclick richtig anwenden

Beitrag lesen

hier die lösung:

function init_Zusatzmatten()  
{  
  
var infile = new Array();  
  
var ZusatzmatteAuswählen = function()  
{  
  
var Zusatz_HTZ = document.Auswahl.Zusatz.options[document.Auswahl.Zusatz.selectedIndex].text;  
var Zusatz_Variante = document.Auswahl.ZusatzVariante.options[document.Auswahl.ZusatzVariante.selectedIndex].text;  
  
infile = infile.concat( Zusatz_HTZ + "_" + Zusatz_Variante );  
  
msg( infile + "<br>" );  
  
}  
  
document.getElementById( "ZusatzmatteAuswahl" ).onclick = ZusatzmatteAuswählen;  
  
};