Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/05/2006, 18:37
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Otra manera

Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Excepci&oacute;n</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function probar(){
try {
  //ejemplo de línea con error
  alerta("Esta linea provocará una excepción.");  
}
catch(exception) {
  if (exception.description == null) {
    alert("Excepción: " + exception.message);  
  } else {
    alert("Excepción: " + exception.description);
  }
}
}

</script>

</head>

<body>
<a href="javascript:probar()">probar </a>
</body>
</html>