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异常捕获的主要内容,如果未能解决你的问题,请参考以下文章

JS异常捕获和抛出

Java异常处理机制

js 捕获异常和抛出异常

ios的app无法捕捉js异常信息

前端开发中js代码异常处理及监控

JS中异常处理的理解