JavaScript Tutorial/Development/Try Catch

Материал из Web эксперт
Версия от 18:52, 25 мая 2010; (обсуждение)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Try catch exception

<html>
<head>
<title>Try Catch Example</title>
<script type="text/javascript">
try {
    window.nonExistentFunction();
    alert("Method completed.");
} catch (exception) {
    alert("An exception occurred.");
} finally {
    alert("End of try�catch test.");
}
</script>
</head>
<body>
</body>
</html>