语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -22,7 +22,7 @@
<li>循环遍历中通过抛出<a class="new" href="Reference/Global_Objects/StopIteration" rel="nofollow" title="此页面仍未被本地化, 期待您的翻译!"><code>StopIteration</code></a>对象结束循环。</li>
</ul>
<h3 id="旧迭代器协议示例">旧迭代器协议示例</h3>
<pre class="brush: js">function makeIterator(array){
<pre><code class="language-javascript">function makeIterator(array){
var nextIndex = 0;
return {
@@ -47,7 +47,7 @@ catch(e){
// iteration over
}
}
</pre>
</code></pre>
<h2 id="参见">?参见</h2>
<ul>
<li><a href="https://developer.mozilla.orgGuide/Iterators_and_Generators">迭代器和生成器</a></li>