aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/statements/try...catch/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/statements/try...catch/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/statements/try...catch/index.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/files/zh-cn/web/javascript/reference/statements/try...catch/index.html b/files/zh-cn/web/javascript/reference/statements/try...catch/index.html
index 587da47b18..6559e9cbb2 100644
--- a/files/zh-cn/web/javascript/reference/statements/try...catch/index.html
+++ b/files/zh-cn/web/javascript/reference/statements/try...catch/index.html
@@ -34,24 +34,12 @@ translation_of: Web/JavaScript/Reference/Statements/try...catch
<dl>
<dt><code>try_statements</code></dt>
<dd>需要被执行的语句。</dd>
-</dl>
-
-<dl>
<dt><code>catch_statements_1</code>, <code>catch_statements_2</code></dt>
<dd>如果在<code>try</code>块里有异常被抛出时执行的语句。</dd>
-</dl>
-
-<dl>
<dt><code>exception_var_1</code>, <code>exception_var_2</code></dt>
<dd>用于保存关联<code>catch</code>子句的异常对象的标识符。</dd>
-</dl>
-
-<dl>
<dt><code>condition_1</code></dt>
<dd>一个条件表达式。</dd>
-</dl>
-
-<dl>
<dt><code>finally_statements</code></dt>
<dd>在<code>try</code>语句块之后执行的语句块。无论是否有异常抛出或捕获这些语句都将执行。</dd>
</dl>