coucou747
Messages postés12303Date d'inscriptionmardi 10 février 2004StatutMembreDernière intervention30 juillet 201244 18 févr. 2006 à 12:34
Salut,
<meta http-equiv= "Content-Type" content="text/html; charset=UTF-8">
<meta name="Generator" content="Kate, the KDE Advanced Text Editor">
<html>
<head>
<title> ajout d'options dans un select</title>
<script type ="text/javascript">
function add(){
var newOption = document.createElement("option");
newOption.setAttribute("value",document.getElementById("valeur").value);
newOption.innerHTML=document.getElementById("texte").value;
document.getElementById("monselect").appendChild(newOption);
}
</script>
</head>