28/01/2005, 06:19
|
| Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses Puntos: 772 | |
Hola apañero
A ver si te sirve esto:
Código:
<form ... onsubmit="return validar(this)">
Código:
function validar(frm) {
archivo=frm.elements[1].value;
patron=/(\"|\')/
if(archivo.split('.').length!=2 || patron.test(archivo)) {
alert('fichero incorrecto')
return false; }
}
Saludos, |