반응형
자바와 동일하게 try 문안에서 오류 발생시에 catch 문을 수행한다.
<!DOCTYPE html>
<html>
<head>
<script>
var txt="";
function message()
{
try
{
adddlert("Welcome guest!"); //없는 function을 일부러 호출하여 에러발생.
}
catch(err)
{
txt="Error description: " + err.message + "\n\n"; //err.message 에러 내용
alert(txt); //alert 창으로 에러내용 보여준다.
}
}
</script>
</head>
<body>
<input type="button" value="View message" onclick="message()" />
</body>
</html>
Error description: adddlert is not defined
반응형
댓글