1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<form id='mon_formulaire' action="test_1.php" method="post" ENCTYPE='multipart/form-data' >
</br></br><fieldset><legend> Recherche d'un switch particulier</br></br> </legend>
<label for="switch">Par nom de switch : </label>
<input type="input" name="switch" id="switch" value="" />
<div class="update" id="switch_update"></div>
<input type="hidden" name="switch_id" id="switch_id" value="" />
<input type='submit' value='Valider'>
</fieldset></form>
<br/>
Prévisualisation du switch : <span id="switch_log"></span>
<script type="text/javascript">
new Ajax.Autocompleter ('switch',
'switch_update',
'adm_switch.php',
{
method: 'post',
paramName: 'switch',
afterUpdateElement: ac_return
});
</script> |
Partager