16/08/2011, 16:42
|
| | | Fecha de Ingreso: julio-2011
Mensajes: 80
Antigüedad: 13 años, 3 meses Puntos: 0 | |
Validar con Jquery Hola espero no estar equivocado de lugar y espero que me puedan ayudar ..
Estoy usando struts 1 y hibernate . Tengo una jsp con un formulario al cual quiero validar con jquery y su plguin validator,es aqui donde tengo el problema .No funciona ..
Aqui les pongo el codigo de la jsp :
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<%@taglib prefix="html" uri="/../WEB-INF/struts/struts-html.tld"%>
<link rel="stylesheet" type="text/css" media="screen"
href="css/stylo.css" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>AltaHerramienta</title>
<style type="text/css">
label.error {
color: red;
}
</style>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript"
src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.js"></script>
<script type="text/javascript"> ----> $(document).ready(function() {
("form1").validate({
rules : {
nombre : {
required : true,
minlength : 3
}
}
});
});
</script>
</head>
<body>
<div class="contenedor">
<div class="margen">
<html:form action="/insertarherramienta" method="post" styleId="form1">
<table>
<tr>
<td><html:hidden property="method" value="agregar" /><label
for="Nombre">Nombres:</label> <input type="text" id="nombre"
name="nombre" /></td>
</tr>
<tr>
<td><html:submit>Add</html:submit></td>
</tr>
</table>
</html:form> <html:link href="index.do" styleClass="boton">Volver</html:link>
</div>
</div>
</body>
</html> Lo eh probado en EI,FF, Opera y Chrome .. no funciona en ninguno .En el IE me tira el error en la flecha roja , espero que me puedan ayudar, ya que se me agotaron las opciones.
Gracias y Saludos |