Bueno pues como el título dice estoy intentando hacer la validación de un formulario. Pongo aquí el código que uso a ver si podeis ver dónde está el error.
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <!--
.Estilo1 {
font-family: "Colonna MT";
color: #FFFFFF;
font-size: 18px;
}
.Estilo2 {font-size: 18px;}
* {left: 2px;}
body {
background-color: #000000;
}
-->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head> <div style="background-image:url(http://www.tuswallpapersgratis.com/images/wallpapers/Fuego_Reflejado_1024x768-275502.jpeg);"> <div class="Estilo1" style="text-align:justify; text-align:center;">Si tu navegador es IE, es posible que esté bloqueando algunas partes de la página. Si es así, te saldrá una ventana de aviso de bloqueo de ventanas emergentes. Sólo tienes que hacer click en ella y en 'Permitir contenido bloqueado'.
</div> <form id='entrada' action="mailto:[email protected]" method="post" enctype="application/x-www-form-urlencoded" onsubmit="return envio();"> <input type='hidden' name="Formulario" value="Ikariam ext" /> <span class="Estilo1">Indica tu:
<div class="Estilo1"><ul> <input type='text' id='nombre' size="20" /><br /><br /><br /> <li><div class="Estilo1">Número de colonias:
</div></li> <input type='text' id='coordenadasx' size='15'/><br /><br /><br /> <input type='text' id='coordenadasy' size='15' /><br /> <input type="submit" value="Enviar datos" /> <input type='reset' value="Restablecer datos" /> <span class="Estilo1"> Deja aquí tu comentario (1000 carácteres máx.):
</span> <form action="mailto:[email protected]" method="post" enctype="application/x-www-form-urlencoded" id="comid">
<pre></pre> <input type='text' id='numc' value="1000" size="7" ReadOnly /> <input type='submit' value="Enviar comentario" /> <input type='reset' value="Borrar" />
Código Javascript
:
Ver original<script language="javascript" type="text/javascript">
var d = document;
function envio(){
if (document.getElementById('nombre').value.length==0){
alert("Escribe tu nombre, por favor");
document.getElementById('nombre').focus();
return false;
}else{
return true;
}
if (document.getElementById('coordenadasx').value.length==0){
alert("Escribe tus coordenadas, por favor");
document.getElementById('coordenadasx').focus();
return false;
}else{
return true;
}
if (isNaN(document.getElementById('coordenadasx').value)){
alert("Escribe un número válido, por favor");
document.getElementById('coordenadasx').focus();
return false;
}else{
return true;
}
if (document.getElementById('coordenadasy').value.length==0){
alert("Escribe tus coordenadas, por favor");
document.getElementById('coordenadasy').focus();
return false;
}else{
return true;
}
if (isNaN(document.getElementById('coordenadasy').value)){
alert("Escribe un número válido, por favor");
document.getElementById('coordenadasy').focus();
return false;
}else{
return true;
}
if (document.getElementById('puntos').selectedIndex==0){
alert("Indica tus puntos, por favor");
document.getElementById('puntos').focus();
return false;
}else{
return true;
}
if (document.getElementById('colonias').selectedIndex==0){
alert("Indica el número de colonias que posees, por favor");
document.getElementById('colonias').focus();
return false;
}else{
return true;
}
alert("Muchas gracias, tus datos serán enviados");
}
function caract(){
var caracter = d.getElementById('coment').value.length;
var valor = d.getElementById('numc');
valor.value = 1000 - caracter;
if(caracter>=1000){
alert('Ya has alcanzado los 1000 carácteres, por favor envía este comentario y luego otro nuevo. Gracias.');
document.getElementById('coment').value = document.getElementById('coment').substring(0,1000)
}
}
</script>
Muchas gracias desde ya,
Saludos (: