Cita:
Iniciado por ferbux hola, pues puedes hacer algo asi:
function validar(){
if(document.formulario.fini=" ")
alert("Ingrese fecha de inicio");
if(document.formulario.ffin=" ")
alert("Ingrese fecha de terminacion");
if(document.formulario.dep=" ")
alert("Ingrese el numero de pedido");
}
y la mandas llamar asi:
<input type="hidden" name="enviar" value="Enviar">
<input type="Submit" name="enviar" value="Enviar" class=button onclick="validar()">
espero te sirva.
sALUDOS.
Perdón por el retraso, es que me queado sin Internet :)
Ante todo gracias. Y otra cosa que quiero preguntar...
Esto como se "llama" desde cada campo?
Es decir, si tengo esto...
Código HTML:
<form id="form1" name="form1" method="post" action="altaclie2.php">
<label><strong>Empresa</strong>:
<input name="nombre" type="text" id="nombre" value="Escriba el nombre de su empresa" size="50" maxlength="50" />
</label>
<p><strong>CIF:
<label>
<input name="cif" type="text" id="cif" size="9" maxlength="9" />
</label>
</strong></p>
<p><strong>Calle:
<label>
<input name="calle" type="text" id="calle" value="Introduzca el nombre de la calle" size="50" maxlength="50" />
</label>
</strong></p>
<p><strong>Nº / bajo:
<label>
<input name="numero" type="text" id="numero" size="3" maxlength="3" />
</label>
</strong></p>
<p><strong>CP: </strong>
<label>
<input name="cp" type="text" id="cp" size="5" maxlength="5" />
</label>
</p>
<p><strong>Provincia:
<label> </label>
</strong>
<label>
<select name="prov" size="1" id="prov">
<?
$db="servtein";
$tabla="provincias";
$sql="SELECT * from $tabla";
$conexion = mysql_connect("localhost", "root");
mysql_select_db($db, $conexion);
$resultado= mysql_query($sql, $conexion);
while($registro=mysql_fetch_row($resultado))
{
?>
<option value="<? echo $registro[0]; ?>"> <? echo $registro[1]; ?>.
<?
}
?>
</select>
</label>
(recuerde que se muestran las provincias donde ofrecemos covertura)</p>
<p><strong>TLF:
<label>
<input name="tlf" type="text" id="tlf" size="9" maxlength="9" />
</label>
</strong></p>
<p><strong>E-Mail
<label>
:
<input name="email" type="text" id="email" value="[email protected]" size="50" maxlength="50" />
</label>
</strong></p>
<p>-----------------------------------------</p>
<p><strong>Usuario:
<label>
<input name="login" type="text" id="login" size="20" maxlength="20">
</label>
</strong></p>
<p><strong>Contraseña: </strong>
<label>
<input name="pass" type="password" id="pass" size="25" maxlength="25">
</label>
</p>
<p>
<input type="submit" name="Submit" value="Enviar">
<input name="level" type="hidden" id="level" value="1">
</p>
<p>
<label></label>
</p>
</form>
Tengo que poner el Script arriba de esto, y luego como se aplica en los campos? Es que ya te digo, estoy muy pez en javascript
Gracias
PD: y algo para decir que tenga que introducir minimo un numero de caractétes (para el password)