diff options
Diffstat (limited to 'files/zh-cn/web/javascript/guide')
7 files changed, 14 insertions, 14 deletions
diff --git a/files/zh-cn/web/javascript/guide/control_flow_and_error_handling/index.html b/files/zh-cn/web/javascript/guide/control_flow_and_error_handling/index.html index 08bbb7ae5b..4ed8290f17 100644 --- a/files/zh-cn/web/javascript/guide/control_flow_and_error_handling/index.html +++ b/files/zh-cn/web/javascript/guide/control_flow_and_error_handling/index.html @@ -219,7 +219,7 @@ document.write("Is there anything else you'd like?<br>"); <h3 id="throw_语句"><code>throw</code> 语句</h3> -<p>使用<font face="Courier New, Andale Mono, monospace"><code>throw</code>语句抛出一个异常。当你抛出异常,你规定一个含有值的表达式要被抛出。</font></p> +<p>使用<code>throw</code>语句抛出一个异常。当你抛出异常,你规定一个含有值的表达式要被抛出。</p> <pre class="brush: js">throw expression; </pre> diff --git a/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html b/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html index c89cc966e5..1ea851d0f7 100644 --- a/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html +++ b/files/zh-cn/web/javascript/guide/expressions_and_operators/index.html @@ -588,7 +588,7 @@ var a = [x, x, x, x, x]; for (var i = 0, j = 9; i <= j; i++, j--) console.log('a[' + i + '][' + j + ']= ' + a[i][j]);</pre> -<h3 id="delete" name="delete"><font face="Consolas, Liberation Mono, Courier, monospace">一元</font>操作符</h3> +<h3 id="delete" name="delete">一元操作符</h3> <p>一元操作符仅对应一个操作数。</p> @@ -669,13 +669,13 @@ typeof today; // returns "object" typeof dontExist; // returns "undefined" </pre> -<p>对于关键词 <code>true</code> 和 <code>null<font face="Open Sans, Arial, sans-serif">, </font></code><code>typeof</code> 操作符将会返回如下结果:</p> +<p>对于关键词 <code>true</code> 和 <code>null</code>, <code>typeof</code> 操作符将会返回如下结果:</p> <pre class="brush: js notranslate">typeof true; // returns "boolean" typeof null; // returns "object" </pre> -<p>对于一个数值或字符串<code><font face="Open Sans, Arial, sans-serif">, </font></code><code>typeof</code> 操作符将会返回如下结果:</p> +<p>对于一个数值或字符串<code></code>, <code>typeof</code> 操作符将会返回如下结果:</p> <pre class="brush: js notranslate">typeof 62; // returns "number" typeof 'Hello world'; // returns "string" diff --git a/files/zh-cn/web/javascript/guide/indexed_collections/index.html b/files/zh-cn/web/javascript/guide/indexed_collections/index.html index 5dddf74d46..fae44cbb84 100644 --- a/files/zh-cn/web/javascript/guide/indexed_collections/index.html +++ b/files/zh-cn/web/javascript/guide/indexed_collections/index.html @@ -7,9 +7,9 @@ translation_of: Web/JavaScript/Guide/Indexed_collections <p class="summary">这个章节主要介绍了以索引进行排序的数据集合。包括数组以及类似于数组的数据结构,如<strong style="background-color: #f4f7f8; font-weight: bold;"> {{jsxref("Array")}} </strong>、<strong style="background-color: #f4f7f8; font-weight: bold;">{{jsxref("TypedArray")}} </strong>。</p> -<h2 id="数组对象Array_object"><font face="Courier, Andale Mono, monospace">数组对象(Array object)</font></h2> +<h2 id="数组对象Array_object">数组对象(Array object)</h2> -<p><font face="Courier, Andale Mono, monospace">数组(array)是一个有序的数据集合,我们可以通过数组名称(name)和索引(index)进行访问。例如,我们定义了一个数组emp,数组中的每个元素包含了一个雇员的名字以及其作为索引的员工号。那么emp[1]将会代表1号员工,emp[2]将会代表2号员工,以此类推。</font></p> +<p>数组(array)是一个有序的数据集合,我们可以通过数组名称(name)和索引(index)进行访问。例如,我们定义了一个数组emp,数组中的每个元素包含了一个雇员的名字以及其作为索引的员工号。那么emp[1]将会代表1号员工,emp[2]将会代表2号员工,以此类推。</p> <p>JavaScript中没有明确的数组数据类型。但是,我们可以通过使用内置Array对象和它的方法对数组进行操作。Array对象有很多操作数组的方法,比如合并、反转、排序等。数组对象有一个决定数组长度和使用正则表达式操作其他属性的属性。</p> diff --git a/files/zh-cn/web/javascript/guide/keyed_collections/index.html b/files/zh-cn/web/javascript/guide/keyed_collections/index.html index bb735f4205..fe78a06692 100644 --- a/files/zh-cn/web/javascript/guide/keyed_collections/index.html +++ b/files/zh-cn/web/javascript/guide/keyed_collections/index.html @@ -40,7 +40,7 @@ for (var [key, value] of sayings) { sayings.clear(); sayings.size; // 0</pre> -<h3 id="Object和Map的比较"><code><font face="Consolas, Liberation Mono, Courier, monospace">Object</font></code>和<code>Map</code>的比较</h3> +<h3 id="Object和Map的比较"><code>Object</code>和<code>Map</code>的比较</h3> <p>一般地,{{jsxref("Object", "objects", "", 1)}}会被用于将字符串类型映射到数值。<code>Object</code>允许设置键值对、根据键获取值、删除键、检测某个键是否存在。而<code>Map</code>具有更多的优势。</p> @@ -48,7 +48,7 @@ sayings.size; // 0</pre> <li><code>Object</code>的键均为<code>Strings</code>类型,在<code>Map</code>里键可以是任意类型。</li> <li>必须手动计算<code>Object</code>的尺寸,但是可以很容易地获取使用<code>Map</code>的尺寸。</li> <li><code>Map</code>的遍历遵循元素的插入顺序。</li> - <li><code>Object</code>有原型,所以映射中有一些缺省的键。<font face="Open Sans, Arial, sans-serif">(</font>可以用 <code>map = Object.create(null) 回避</code>)。</li> + <li><code>Object</code>有原型,所以映射中有一些缺省的键。(可以用 <code>map = Object.create(null) 回避</code>)。</li> </ul> <p>这三条提示可以帮你决定用<code>Map</code>还是<code>Object</code>:</p> @@ -131,7 +131,7 @@ mySet2 = new Set([1,2,3,4]); <h3 id="WeakSet对象"><code>WeakSet</code>对象</h3> -<p>{{jsxref("WeakSet")}}对象是一组对象的集合。<code>WeakSet</code>中的对象不重复且不可枚举<font face="Consolas, Liberation Mono, Courier, monospace">。</font></p> +<p>{{jsxref("WeakSet")}}对象是一组对象的集合。<code>WeakSet</code>中的对象不重复且不可枚举。</p> <p>与{{jsxref("Set")}}对象的主要区别有:</p> diff --git a/files/zh-cn/web/javascript/guide/modules/index.html b/files/zh-cn/web/javascript/guide/modules/index.html index 1ea1f81adf..3ad682563c 100644 --- a/files/zh-cn/web/javascript/guide/modules/index.html +++ b/files/zh-cn/web/javascript/guide/modules/index.html @@ -125,7 +125,7 @@ export function draw(ctx, length, x, y, color) { }; }</pre> -<p>你能够导出函数,<code>var</code><font face="Arial, x-locale-body, sans-serif">,</font><code>let</code><font face="Arial, x-locale-body, sans-serif">,</font><code>const</code>, 和等会会看到的类。export要放在最外层;比如你不能够在函数内使用<code>export</code>。</p> +<p>你能够导出函数,<code>var</code>,<code>let</code>,<code>const</code>, 和等会会看到的类。export要放在最外层;比如你不能够在函数内使用<code>export</code>。</p> <p>一个更方便的方法导出所有你想要导出的模块的方法是在模块文件的末尾使用一个export 语句, 语句是用花括号括起来的用逗号分割的列表。比如:</p> diff --git a/files/zh-cn/web/javascript/guide/numbers_and_dates/index.html b/files/zh-cn/web/javascript/guide/numbers_and_dates/index.html index 8cb199afe5..48a950b5ed 100644 --- a/files/zh-cn/web/javascript/guide/numbers_and_dates/index.html +++ b/files/zh-cn/web/javascript/guide/numbers_and_dates/index.html @@ -71,7 +71,7 @@ var m = 0644; // 420 0.1e2 // 10 </pre> -<h2 id="数字对象"><font face="Consolas, Liberation Mono, Courier, monospace"><code>数字对象</code></font></h2> +<h2 id="数字对象"><code>数字对象</code></h2> <p>内置的{{jsxref("Number")}}对象有一些有关数字的常量属性,如最大值、不是一个数字和无穷大的。你不能改变这些属性,但可以按下边的方式使用它们:</p> @@ -206,7 +206,7 @@ var notANum = Number.NaN; </tbody> </table> -<h2 id="数学对象(Math)"><font face="consolas, Liberation Mono, courier, monospace">数学对象(Math)</font></h2> +<h2 id="数学对象(Math)">数学对象(Math)</h2> <p>对于内置的{{jsxref("Math")}}数学常项和函数也有一些属性和方法。 比方说, <code>Math对象的</code> <code>PI</code> 属性会有属性值 pi (3.141...),你可以像这样调用它:</p> @@ -302,7 +302,7 @@ var notANum = Number.NaN; <p>和其他对象不同,你不能够创建一个自己的Math对象。你只能使用内置的Math对象。</p> -<h2 id="日期对象"><font face="Consolas, Liberation Mono, Courier, monospace">日期对象</font></h2> +<h2 id="日期对象">日期对象</h2> <p>JavaScript没有日期数据类型。但是你可以在你的程序里使用 {{jsxref("Date")}} 对象和其方法来处理日期和时间。Date对象有大量的设置、获取和操作日期的方法。 它并不含有任何属性。</p> diff --git a/files/zh-cn/web/javascript/guide/working_with_objects/index.html b/files/zh-cn/web/javascript/guide/working_with_objects/index.html index 8504e1345e..eb20cf56b1 100644 --- a/files/zh-cn/web/javascript/guide/working_with_objects/index.html +++ b/files/zh-cn/web/javascript/guide/working_with_objects/index.html @@ -506,7 +506,7 @@ var fruitbear = fruit; // 将fruit的对象<strong>引用</strong>(reference) fruit == fruitbear // return true fruit === fruitbear // return true</pre> -<p><font face="Consolas, Liberation Mono, Courier, monospace">了解更多关于比较操作符的用法,查看</font> <a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Comparison_Operators">Comparison operators</a>.</p> +<p>了解更多关于比较操作符的用法,查看 <a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Comparison_Operators">Comparison operators</a>.</p> <h2 id="附加参考">附加参考</h2> |