sschumann: variable übergeben

Beitrag lesen

<snip>Wie verarbeite ich Argumente in JS?</snip>

function Search(variable){
    var variable;
    ClearImages();
    document.simple.src='images/arrow_ra.gif';
    parent.query.location.href='search.pl';
    parent.mainpanel.location.href='empty.pl';
}

function Search(variable){
ClearImages();
document.simple.src='images/arrow_ra.gif';
parent.query.location.href='search.pl'+variable;
parent.mainpanel.location.href='empty.pl';
}