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

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

@@ -4,7 +4,7 @@
<h2 id="Summary" name="Summary">概述</h2>
<p><code><strong>Math.exp()</strong></code> 函数返回 <code>e<sup>x</sup></code><code>x</code> 表示参数,<code>e</code><a href="Reference/Global_Objects/Math/E">欧拉常数Euler's constant</a>,自然对数的底数。</p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox"><code>Math.exp(<em>x</em>)</code></pre>
<pre><code class="language-javascript"><code>Math.exp(<em>x</em>)</code></code></pre>
<h3 id="Parameters" name="Parameters">参数</h3>
<dl>
<dt>
@@ -16,9 +16,9 @@
<p>由于 <code>exp</code><code>Math</code> 的静态方法,所以应该像这样使用:<code>Math.exp()</code>,而不是作为你创建的 <code>Math</code> 实例的方法。</p>
<h2 id="Examples" name="Examples">示例</h2>
<h3 id="Example:_Using_Math.exp" name="Example:_Using_Math.exp">例子:使用 <code>Math.exp</code></h3>
<pre class="brush:js">Math.exp(-1); // 0.36787944117144233
<pre><code class="language-js">Math.exp(-1); // 0.36787944117144233
Math.exp(0); // 1
Math.exp(1); // 2.718281828459045</pre>
Math.exp(1); // 2.718281828459045</code></pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>