一、JavaScript异常捕获
1.异常:当JavaScript引擎执行JavaScript代码时,发生了错误,导致程序停止运行
2.异常抛出:当异常产生,并且将这个异常生成一个错误信息
3.异常捕获:
try{
发生异常的代码块;
}catch(err){
错误信息处理;
}
4.Throw语句:通过throw语句创建一个自定义错误
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <!DOCTYPE html> <html> <head> <meta charset= "UTF-8" > <title></title> </head> <body> <form> <input id= "txt" type= "text" /> <input id= "btn" type= "button" onclick= "demo()" value= "按钮" /> </form> <script> function demo(){ try { var e = document.getElementById( "txt" ).value; if (e== "" ){ throw "请输入" ; } } catch (err){ alert(err); } } </script> </body> </html> |