Forum de discussion
Forum « Programmation Javascript » (archives)
Re: liste deroulante + image dynamique
Envoyé: 5 novembre 2003, 10h20 par indreed
Mais, cela me donne une erreur dans le javascript lors de l'execution.
Je ne peux pas passer uniquement le numéro, sinon l'image qui doit changer ne vas pas reconnaitre l'objet a recevoir pour pouvoir afficher l'image associé a la liste.
j'espere avoir été clair :) Je n'arrive pas à l'être + :D
------------
$id_select_coul = 'id[' . tep_parse_input_field_data($products_options_name_values['products_options_id'], array('"' => '"')) . ']' ;
echo '<select name="'.$id_select_coul.'" onChange="if (BrowserV(3.0,4.0)) startpicture'.$products_options_name_values['products_options_id'].'.src=form.'.$id_select_coul.'.options[form.'.$id_select_coul.'.selectedIndex].value;">';
for ($i=0; $i<sizeof($products_options_array); $i++) {
echo '<option value="' . tep_parse_input_field_data($products_options_array[$i]['id'], array('"' => '"')) . '"';
if ($default == $products_options_array[$i]['id']) {
echo ' SELECTED';
}
echo '>' . tep_parse_input_field_data($products_options_array[$i]['text'], array('"' => '"', '\'' => ''', '<' => '<', '>' => '>')) . '</option>';
}
echo '</select>';
Réponses
|