跳转到内容

JavaScript/保留字/finally

来自维基教科书,开放的书籍,共建自由世界
前一个:final 保留字 下一个:float

finally关键字

[编辑 | 编辑源代码]

finally关键字用作 try 语句的子句。

代码
  var result;

  try {
    result = log(-12.05);
    alert("Executed comment successfully.");
  } catch(err) {
    document.getElementById("demo").innerHTML = err.message;
  } finally {
    alert("result = " + result); // This line will execute anyway
  }
(将把错误消息添加到名为“demo”的 HTML 元素中。)
result = undefined


另请参见

[编辑 | 编辑源代码]
前一个:final 保留字 下一个:float
华夏公益教科书