javascript错误-try,catch

 

javascript错误
try catch throw
try 测试代码块的错误。
catch 处理错误。
throw 创建或抛出异常,异常可以是javascript字符串、数字、逻辑值或对象。
finally 在try语句完成后执行的语句,无论是否抛出或捕获异常。

function msg() {
        try{
            var x = "aaa";
            if(x == "") {
                throw "为空!";
            }
            if(isNaN(x)) {
                throw "不是一个数字!";
            }
        }catch(er) {
            alert(er);
        }finally {
            alert(111);
        }
    }
    msg();

 

posted on 2015-03-14 17:14  比比已存在  阅读(140)  评论(0编辑  收藏  举报