Ver Mensaje Individual
  #7 (permalink)  
Antiguo 10/09/2008, 11:49
Avatar de jseros
jseros
 
Fecha de Ingreso: agosto-2008
Ubicación: Bogotá
Mensajes: 218
Antigüedad: 16 años, 5 meses
Puntos: 18
Respuesta: Camo Validar Formulario

Perdón no habia visto bien tu código:

Revisa así, corregí algunas cosas, te recomiendo que las revises:

Código PHP:
<html>
<
head>
<
title>Frame 1 </title>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<
head>
<
script>


function 
form2Array(idform)
{
    var 
myform document.getElementById(idform);
    var 
myformfield myform.elements;
    var 
fieldsVector = [];
    for(var 
myformfield.length i++)
        if( 
myformfield[i].type == "text")
            if(
myformfield[i].value != "" )
                
fieldsVectormyformfield[i].id] = myformfield[i].value;
    
    return 
fieldsVector;
}

window.onload = function(){
    
document.getElementById"formulario" ).onsubmit = function(){
        
alertform2Arraythis.id ) );
        return 
false;
    }
}

</script>

</head>

<body>



<form name="formulario" id="formulario" action="destino.php">
Video Nº 1 <br> <input name="myInputUrl" type="text" id="nombre1">
Video Nº 2 <br> <input name="myInputUr2" type="text" id="nombre2">
Video Nº 3 <br> <input name="myInputUr3" type="text" id="nombre3">

<br><input type="submit" value="Ejecuta" >
</form>



</body>
</html> 
Me cuentas..