throw 语句

简介: throw 语句

请输入 5 - 10 之间的数字:


var message, x;
message = document.getElementById("message");
message.innerHTML = "";
x = document.getElementById("demo").value;
try { 
    if(x == "") throw "空的";
     if(isNaN(x)) throw "不是数字";
     x = Number(x);
    if(x < 5) throw  "太小";
    if(x > 10) throw "太大";
}
catch(err) {
    message.innerHTML = "输入是 " + err;
}

}

目录
相关文章
每日一道面试题之try-catch-finally 中,如果 catch 中 return 了,finally 还会执行吗?
每日一道面试题之try-catch-finally 中,如果 catch 中 return 了,finally 还会执行吗?
163 0
|
18天前
哪些情况可能会导致 try-catch 语句不捕获异常?
【10月更文挑战第12天】在实际应用中,可能还会存在其他一些情况导致异常不被捕获。因此,在使用`try-catch`语句时,需要仔细考虑各种可能的情况,以确保异常能够被正确地捕获和处理。
125 1
|
6月前
|
编译器
try{...}catch(){...}finally{...}语句你真的理解吗?
try{...}catch(){...}finally{...}语句你真的理解吗?
34 0
|
6月前
|
C++
C++异常处理try和throw以及catch的使用
C++异常处理try和throw以及catch的使用
try catch finally,try 里面有 return,finally 还执行吗?
try catch finally,try 里面有 return,finally 还执行吗?
66 0
|
6月前
|
存储 缓存 IDE
细琢磨,try catch finally 执行顺序与返回值
细琢磨,try catch finally 执行顺序与返回值
57 0
try...catch中,catch加了return,后面的代码是不会执行的
try...catch中,catch加了return,后面的代码是不会执行的
104 0
|
JavaScript 前端开发
Throw 语句
Throw 语句
59 0
try catch return语句情况分析
简要讲述一下try catch代码中return语句返回值情况分析
|
JavaScript 前端开发
错误与异常 之 try...catch语句
错误与异常 之 try...catch语句
118 0