第二天:函数异常抛出

Posted fenr9

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二天:函数异常抛出相关的知识,希望对你有一定的参考价值。

知识点1:通过try....catch...来捕获异常
<script>
// var str="hello"; 没有这一句时,运行或弹出提示框:内容是 str未定义
function demo(){
try{
alert(str);
}catch (err){
alert(err);
}
}
demo();

</script>

ps:try{}内的语句一定会执行,有错误时才会去执行catch{}中的语句

知识点2:通过throw抛出异常
<form>
<input id="txt" type="text">
<input id="btn" type="button" onclick="demo()" value="按钮">
</form>

<script>

function demo(){

var e = document.getElementById("txt").value;
try {
if (e == "") {
throw"第一个用户输入错误==空";
}
}catch(err){
alert(err);
};
}
demo();

</script>

运行结果:
1)点击“按钮”,弹出框内容:第一个用户输入错误==空
2)输入内容后,点击“按钮”,没提示
 

以上是关于第二天:函数异常抛出的主要内容,如果未能解决你的问题,请参考以下文章

学习源码第二天(渐入佳境)

python基础学习笔记第二天 内建函数(s t r)

第二天 Python3.4.2 函数

__x__(72)1011第十二天__ JavaScript 错误处理机制

python核心编程 第二天

python第二天:递归函数(汉诺塔)