6.try catch语句

Posted 许先

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.try catch语句相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>输出Hello World</title>
<head>
<script type="text/javascript">
 var txt = "";
 try{
    adddlert("Wellcome guest~");
 }catch(err){ 
     txt="此页面存在一个错误。\n\n" ;
     txt+="错误描述: " + err.message + "\n\n";
     txt+="点击“确定”继续。\n\n";
     alert(txt); 
 } 
</script>
</head>

<body> 
</body>

</html>

 

以上是关于6.try catch语句的主要内容,如果未能解决你的问题,请参考以下文章

php 一个自定义的try..catch包装器代码片段,用于执行模型函数,使其成为一个单行函数调用

异常和TCP通讯

java异常 throw和try-catch的关系

try-catch语句

Java trycatch语句

try...catch 语句