aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/global_objects/date
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:04 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commit7c2556fe79c44d7c31108b8c8b048d2b7704a95e (patch)
treecb64f8749da725612d3dc9cf95943d0fc40add79 /files/zh-tw/web/javascript/reference/global_objects/date
parentba64b95982c1b53696644a033accf800a4e82c09 (diff)
downloadtranslated-content-7c2556fe79c44d7c31108b8c8b048d2b7704a95e.tar.gz
translated-content-7c2556fe79c44d7c31108b8c8b048d2b7704a95e.tar.bz2
translated-content-7c2556fe79c44d7c31108b8c8b048d2b7704a95e.zip
remove span tag in zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/reference/global_objects/date')
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html2
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/date/index.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html b/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html
index abdc0e89a1..fb55827283 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/date/getday/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDay
---
<div>{{JSRef}}</div>
-<p><span class="seoSummary"><strong><code>getDay()</code></strong> 方法會根據當地時間將指定日期返回一星期中的第幾天,</span>其中0代表星期日。 在當月的某天可以參考{{jsxref("Date.prototype.getDate()")}}。</p>
+<p><strong><code>getDay()</code></strong> 方法會根據當地時間將指定日期返回一星期中的第幾天,其中0代表星期日。 在當月的某天可以參考{{jsxref("Date.prototype.getDate()")}}。</p>
<div>{{EmbedInteractiveExample("pages/js/date-getday.html", "shorter")}}</div>
diff --git a/files/zh-tw/web/javascript/reference/global_objects/date/index.html b/files/zh-tw/web/javascript/reference/global_objects/date/index.html
index 91c0305aa4..9e5675e682 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/date/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/date/index.html
@@ -34,7 +34,7 @@ new Date(<var>year</var>, <var>month</var>[, <var>day</var>[, <var>hour</var>[,
<dl>
<dt><code>value</code></dt>
- <dd>自世界標準時間(UTC) 1970 年 1 月 1 日 00:00:00 開始的毫秒整數(Integer)值(Unix 紀元;但要注意到大多 Unix 時間<span class="short_text" id="result_box" lang="zh-CN"><span>戳記是以秒而非毫秒為單位)。</span></span></dd>
+ <dd>自世界標準時間(UTC) 1970 年 1 月 1 日 00:00:00 開始的毫秒整數(Integer)值(Unix 紀元;但要注意到大多 Unix 時間戳記是以秒而非毫秒為單位)。</dd>
<dt><code>dateString</code></dt>
<dd>表示時間日期的字串。這個字串應該要能被 {{jsxref("Date.parse()")}} 方法解析(符合 <a href="http://tools.ietf.org/html/rfc2822#page-14">IETF-compliant RFC 2822 timestamps</a> 及 <a href="http://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15">version of ISO8601</a> 格式要求).
<div class="note">