02/05/2011, 15:31
|
| Colaborador | | Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 7 meses Puntos: 1012 | |
Respuesta: Orden de un combo mal en chrome lo ha probado en chrome 11 y funciona.
prueba con este Cita: <html>
<head>
<script typ="text/javascript">
window.onload = function() {
var mat = ['a', 'b', c = [1,2,3,4], 'd', 'e', 'f', 'g', 'h', 'i'];
var sel = document.getElementById("combox");
for(var i in mat[2]) {
var opt = document.createElement("option");
opt.value = i;
opt.text = mat[2][i];
sel.add(opt, null);
}
}
</script>
</head>
<body>
<select id="combox"></select>
</body>
</html> |