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

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

@@ -3,7 +3,7 @@
<h2 id="Summary" name="Summary">概述</h2>
<p><strong><code>toExponential()</code></strong> 方法以指数表示法返回该数值字符串表示形式。</p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox"><code><em>numObj</em>.toExponential(<em>fractionDigits</em>)</code></pre>
<pre><code class="language-javascript"><code><em>numObj</em>.toExponential(<em>fractionDigits</em>)</code></code></pre>
<h3 id="Parameter" name="Parameter">参数</h3>
<dl>
<dt>fractionDigits</dt>
@@ -23,7 +23,7 @@
<dd>如果该方法在一个非数值类型对象上调用。</dd>
</dl>
<h2 id="Example" name="Example">示例</h2>
<pre class="brush:js">var numObj = 77.1234;
<pre><code class="language-js">var numObj = 77.1234;
alert("numObj.toExponential() is " + numObj.toExponential()); //输出 7.71234e+1
@@ -33,7 +33,7 @@ alert("numObj.toExponential(2) is " + numObj.toExponential(2)); //输出 7.71e+1
alert("77.1234.toExponential() is " + 77.1234.toExponential()); //输出 7.71234e+1
alert("77 .toExponential() is " + 77 .toExponential()); //输出 7.7e+1</pre>
alert("77 .toExponential() is " + 77 .toExponential()); //输出 7.7e+1</code></pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>