Js异常捕获
Posted 一纸年华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js异常捕获相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <script> function demo(){ try{ alert(str); }catch(e){ alert(e); } } demo(); </script> <form> <input id="txt" type="text"/> <input id="btn" type="button" onclick="demo1()" value="按钮" /> </form> <script> function demo1(){ try{ var e=document.getElementById("txt").value; if(e==""){ throw "请输入"; } }catch(e){ alert(e); } } </script> </body> </html>
以上是关于Js异常捕获的主要内容,如果未能解决你的问题,请参考以下文章