Lo que pretendo hacer es crear un select y intup number; soy novata en javascript y no me funciona lo que me dices
Código Javascript
:
Ver original<!DOCTYPE html>
<html>
<head>
<style>
#otro {
border: 1px solid #47913E;
margin-bottom: 10px;
}
</style>
</head>
<body>
<p><b>Créer Éléments</b></p>
<div id="otro" style="width: 200px;">
Éléments Nouveau<br><br>
</div><br>
<button onclick="nuevo()">Click S'il vous-plaît</button>
<script>
function nuevo(){
var para = document.createElement('select');
para . id = "lista[]";
para . name = "lista[]";
document.getElementById("otro").appendChild(para);
var x = document.getElementById("lista[]");
var option = document.createElement("option");
option . text = "Seleccione Opcion";
option . text = "Opción 1";
option . text = "Opción 2";
option . text = "Opción 3";
x.add(option);
var cant = document.createElement('input');
cant . type = "number" ;
cant . name = "Prueba[]";
cant . id = "Prueba[]";
cant . value = "1";
cant . min = "1";
cant . max = "15";
document.getElementById("otro").appendChild(cant);
}
</script>
</body>
</html>