JavaScript 错误 - throw、try 和 catch

try 语句测试代码块的错误。

catch 语句处理错误。

throw 语句创建自定义错误。(就是自己希望显示的错误信息)

<body><p>请输出一个 510 之间的数字:</p><input id="demo" type="text">

<button type="button" onclick="myFunction()">测试输入</button>

<p id="message"></p><script>

function myFunction() {

    var message, x;

    message = document.getElementById("message");

    message.innerHTML = "";

    x = document.getElementById("demo").value;

    try { 

        if(x == "")  throw "值为空soyo";

        if(isNaN(x)) throw "不是数字";

        x = Number(x);

        if(x < 5)    throw "太小";

        if(x > 10)   throw "太大";

    }

    catch(err) {

        message.innerHTML = "错误: " + err;

    }

}

</script></body>

 

posted @ 2017-06-14 10:38  soyosuyang  阅读(254)  评论(0编辑  收藏  举报