diff options
Diffstat (limited to 'files/zh-cn/web')
6 files changed, 6 insertions, 15 deletions
diff --git a/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html b/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html index 0e10295803..2939825e6b 100644 --- a/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html +++ b/files/zh-cn/web/api/htmltablerowelement/rowindex/index.html @@ -5,7 +5,7 @@ translation_of: Web/API/HTMLTableRowElement/rowIndex --- <div><font><font>{{APIRef("HTML DOM")}}</font></font></div> -<p><font><font>的</font></font><strong><code>HTMLTableRowElement.rowIndex</code></strong><font><font>只读属性表示一个行相对于整个位置{{的HtmlElement("表")}}。</font></font></p> +<p><font><font>的</font></font><strong><code>HTMLTableRowElement.rowIndex</code></strong><font><font>只读属性表示一个行相对于整个位置的{{HtmlElement("table")}。</font></font></p> <p><font><font>即使{{HtmlElement("thead")}},{{HtmlElement("tbody")}}和{{HtmlElement("tfoot")}}}的元素在HTML中乱序显示,浏览器也会以正确的顺序。</font><font>因此,行数从</font></font><code><thead></code><font><font>到</font></font><code><tbody></code><font><font>,从</font></font><code><tbody></code><font><font>到</font></font><code><tfoot></code><font><font>。</font></font></p> diff --git a/files/zh-cn/web/api/location/tostring/index.html b/files/zh-cn/web/api/location/tostring/index.html index 6af60a303c..c975af6b11 100644 --- a/files/zh-cn/web/api/location/tostring/index.html +++ b/files/zh-cn/web/api/location/tostring/index.html @@ -28,8 +28,8 @@ var result = anchor.toString(); // Returns: 'https://developer.mozilla.org/en-US <th scope="col"><font><font>评论</font></font></th> </tr> <tr> - <td><font><font>{{SpecName('HTML WHATWG',“#dom-location-href”)}}</font></font></td> - <td><font><font>{{Spec2('HTML WHATWG')}}</font></font></td> + <td><font><font>{{SpecName("HTML WHATWG","#dom-location-href")}}</font></font></td> + <td><font><font>{{Spec2("HTML WHATWG")}}</font></font></td> <td></td> </tr> </tbody> diff --git a/files/zh-cn/web/api/mediarecorder/ondataavailable/index.html b/files/zh-cn/web/api/mediarecorder/ondataavailable/index.html index 0fd81b1a49..0bf5fce305 100644 --- a/files/zh-cn/web/api/mediarecorder/ondataavailable/index.html +++ b/files/zh-cn/web/api/mediarecorder/ondataavailable/index.html @@ -5,7 +5,7 @@ translation_of: Web/API/MediaRecorder/ondataavailable --- <p><font><font>{{APIRef("MediaStream Recording")}}</font></font></p> -<p><strong><code>MediaRecorder.ondataavailable </code></strong><font><font>事件处理程序(</font></font>part of the <a href="/en-US/docs/Web/API/MediaStream_Recording_API"><font><font>MediaStream记录API</font></font></a><font><font>)处理{{</font></font>event("<font><font>dataavailable")}}事件,让您在响应运行代码{{domxref("</font></font>Blob<font><font>")}}数据被提供使用。</font></font></p> +<p><strong><code>MediaRecorder.ondataavailable </code></strong><font><font>事件处理程序(</font></font>part of the <a href="/en-US/docs/Web/API/MediaStream_Recording_API"><font><font>MediaStream记录API</font></font></a><font><font>)处理{{event("dataavailable")}}事件,让您在响应运行代码{{domxref("Blob")}}数据被提供使用。</font></font></p> <p><code>dataavailable</code><font><font>当MediaRecorder将媒体数据传递到您的应用程序以供使用时,将触发</font><font>该</font><font>事件。</font><font>数据在包含数据的{{domxref("Blob")}}对象中提供。</font><font>这在四种情况下发生:</font></font></p> diff --git a/files/zh-cn/web/api/svggraphicselement/index.html b/files/zh-cn/web/api/svggraphicselement/index.html index 2b0ae33a27..2993848c2e 100644 --- a/files/zh-cn/web/api/svggraphicselement/index.html +++ b/files/zh-cn/web/api/svggraphicselement/index.html @@ -15,7 +15,7 @@ translation_of: Web/API/SVGGraphicsElement <p> <strong><code>SVGGraphicsElement </code></strong>接口表示SVG元素,其主要目的是将图形直接渲染到组中。</p> -<p>{{InheritanceDiagram(600, 120)} }</p> +<p>{{InheritanceDiagram(600, 120)}}</p> <div class="note"> <p><strong>提示:</strong> 该接口是SVG 2中引入的,它取代了SVG 1.1中的{{domxref("SVGLocatable")}}和{{domxref("SVGTransformable")}}接口。</p> diff --git a/files/zh-cn/web/javascript/reference/global_objects/array/some/index.html b/files/zh-cn/web/javascript/reference/global_objects/array/some/index.html index 734cace600..426e6b16a6 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/array/some/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/array/some/index.html @@ -78,8 +78,6 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/some <pre class="brush: js"><code>[2, 5, 8, 1, 4].some(x => x > 10); // false [12, 5, 8, 1, 4].some(x => x > 10); // true</code></pre> -<p>{{ EmbedLiveSample('Testing_array_elements_using_arrow_functions', '', '', '', 'Web/JavaScript/Reference/Global_Objects/Array/some') }}</p> - <h3 id="判断数组元素中是否存在某个值">判断数组元素中是否存在某个值</h3> <p>此例中为模仿 <code>includes()</code> 方法, 若元素在数组中存在, 则回调函数返回值为 <code>true</code> :</p> @@ -95,8 +93,6 @@ function checkAvailability(arr, val) { checkAvailability(fruits, 'kela'); // false checkAvailability(fruits, 'banana'); // true</pre> -<p>{{ EmbedLiveSample('Checking_whether_a_value_exists_in_an_array', '', '', '', 'Web/JavaScript/Reference/Global_Objects/Array/some') }}</p> - <h3 id="使用箭头函数判断数组元素中是否存在某个值">使用箭头函数判断数组元素中是否存在某个值</h3> <pre class="brush: js">var fruits = ['apple', 'banana', 'mango', 'guava']; @@ -108,9 +104,6 @@ function checkAvailability(arr, val) { checkAvailability(fruits, 'kela'); // false checkAvailability(fruits, 'banana'); // true</pre> -<p>{{ EmbedLiveSample('Checking_whether_a_value_exists_using_an_arrow_function', '', '', '', 'Experiment:StaticExamplesOnTop/JavaScript/Array/some') }}</p> - - <h3 id="将任意值转换为布尔类型">将任意值转换为布尔类型</h3> @@ -134,8 +127,6 @@ getBoolean(1); // true getBoolean('true'); // true </pre> -<p>{{ EmbedLiveSample('Converting_any_value_to_Boolean', '', '', '', 'Web/JavaScript/Reference/Global_Objects/Array/some') }}</p> - <h2 id="Compatibility" name="Compatibility">Polyfill</h2> <p>在第 5 版时,<code>some()</code> 被添加进 ECMA-262 标准;这样导致某些实现环境可能不支持它。你可以把下面的代码插入到脚本的开头来解决此问题,从而允许在那些没有原生支持它的实现环境中使用它。该算法是 ECMA-262 第 5 版中指定的算法,假定 <code>Object </code>和 <code>TypeError</code> 拥有他们的初始值,且 <code>fun.call</code> 等价于 <code>{{jsxref("Function.prototype.call")}}</code>。</p> diff --git a/files/zh-cn/web/javascript/reference/statements/break/index.html b/files/zh-cn/web/javascript/reference/statements/break/index.html index 9cecd6eef9..d38b51a97d 100644 --- a/files/zh-cn/web/javascript/reference/statements/break/index.html +++ b/files/zh-cn/web/javascript/reference/statements/break/index.html @@ -17,7 +17,7 @@ translation_of: Web/JavaScript/Reference/Statements/break <pre class="syntaxbox notranslate"><code>break [label];</code></pre> <dl> - <dt><code>label</code> {{可选}}</dt> + <dt><code>label</code> {{optional_inline}}</dt> <dd>与语句标签相关联的标识符。如果 break 语句不在一个循环或 {{jsxref("Statements/switch", "switch")}} 语句中,则该项是必须的。</dd> </dl> |