From fabc2d57b8febce235d859b8ee4557b4fac1aaa6 Mon Sep 17 00:00:00 2001 From: JasonLamv-t Date: Fri, 25 Aug 2023 14:14:08 +0800 Subject: [PATCH 1/3] [zh-cn]: Update translation of String.small() --- .../global_objects/string/small/index.md | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md b/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md index e06c4e6006c673..4d4a73edbd660a 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md +++ b/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md @@ -5,37 +5,39 @@ slug: Web/JavaScript/Reference/Global_Objects/String/small {{JSRef}} {{deprecated_header}} -**`small()`** 方法的作用是创建一个使字符串显示小号字体的 {{HTMLElement("small")}} 标签。 +{{jsxref("String")}} 值的 ** `small()` ** 方法创建一个 {{HTMLElement("small")}} 元素字符串,并将调用字符串嵌入其中(`str`),从而使该字符串以小号字体显示。 + +> **备注:** 所有 [HTML 包装方法](/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String#html_包装器方法)都已被弃用,并且仅为了兼容性而标准化。请使用[DOM API](/zh-CN/docs/Web/API/Document_Object_Model)(例如 [`document.createElement()`](/zh-CN/docs/Web/API/Document/createElement))代替。 ## 语法 -```plain -str.small() +```js-nolint +small() ``` -### 返回值 +### 参数 -带有 {{HTMLElement("small")}} 标签的字符串。 +无。 -## 描述 +### 返回值 -`small()` 方法会 将一个字符串嵌入到`` 标签中: `"str"`。 +一个以 `` 开始标签开头的字符串,接着是文本 `str`,最后是 `` 结束标签。 ## 示例 -### 使用 `small()` 函数 +### 使用 small() -为了改变一个字符串的字体大小,下面的例子使用了字符串中的方法: +以下示例使用字符串方法更改字符串的大小: ```js -var worldString = "Hello, world"; +const worldString = "Hello, world"; console.log(worldString.small()); // Hello, world console.log(worldString.big()); // Hello, world console.log(worldString.fontsize(7)); // Hello, world ``` -使用{{domxref("HTMLElement.style", "element.style")}}对象,你能更加一般地获得和操作该元素的属性,比如: +使用 {{domxref("HTMLElement/style", "element.style")}} 对象,你可以获取元素的 `style` 属性并以更通用的方式进行操作,例如: ```js document.getElementById("yourElemId").style.fontSize = "0.7em"; @@ -49,7 +51,8 @@ document.getElementById("yourElemId").style.fontSize = "0.7em"; {{Compat}} -## 相关链接 +## 参见 +- [`core-js` 中 `String.prototype.small` 的 polyfill](https://github.com/zloirock/core-js#ecmascript-string-and-regexp) - {{jsxref("String.prototype.fontsize()")}} - {{jsxref("String.prototype.big()")}} From 2f4be7de7dceb35099b6581bb1eb5d758b365f45 Mon Sep 17 00:00:00 2001 From: A1lo Date: Fri, 25 Aug 2023 14:21:43 +0800 Subject: [PATCH 2/3] Update files/zh-cn/web/javascript/reference/global_objects/string/small/index.md --- .../javascript/reference/global_objects/string/small/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md b/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md index 4d4a73edbd660a..64e0d2084efe4e 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md +++ b/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md @@ -5,9 +5,9 @@ slug: Web/JavaScript/Reference/Global_Objects/String/small {{JSRef}} {{deprecated_header}} -{{jsxref("String")}} 值的 ** `small()` ** 方法创建一个 {{HTMLElement("small")}} 元素字符串,并将调用字符串嵌入其中(`str`),从而使该字符串以小号字体显示。 +{{jsxref("String")}} 值的 ** `small()`** 方法创建一个 {{HTMLElement("small")}} 元素字符串,并将调用字符串嵌入其中(`str`),从而使该字符串以小号字体显示。 -> **备注:** 所有 [HTML 包装方法](/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String#html_包装器方法)都已被弃用,并且仅为了兼容性而标准化。请使用[DOM API](/zh-CN/docs/Web/API/Document_Object_Model)(例如 [`document.createElement()`](/zh-CN/docs/Web/API/Document/createElement))代替。 +> **备注:** 所有 [HTML 包装方法](/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String#html_包装器方法)都已被弃用,并且仅为了兼容性而标准化。请使用 [DOM API](/zh-CN/docs/Web/API/Document_Object_Model)(例如 [`document.createElement()`](/zh-CN/docs/Web/API/Document/createElement))代替。 ## 语法 From 64357a630df7dafe1f0bd46266f240e4a52c6994 Mon Sep 17 00:00:00 2001 From: A1lo Date: Fri, 25 Aug 2023 14:24:39 +0800 Subject: [PATCH 3/3] Update index.md --- .../javascript/reference/global_objects/string/small/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md b/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md index 64e0d2084efe4e..f78f09ac217931 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md +++ b/files/zh-cn/web/javascript/reference/global_objects/string/small/index.md @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Global_Objects/String/small {{JSRef}} {{deprecated_header}} -{{jsxref("String")}} 值的 ** `small()`** 方法创建一个 {{HTMLElement("small")}} 元素字符串,并将调用字符串嵌入其中(`str`),从而使该字符串以小号字体显示。 +{{jsxref("String")}} 值的 **`small()`** 方法创建一个 {{HTMLElement("small")}} 元素字符串,并将调用字符串嵌入其中(`str`),从而使该字符串以小号字体显示。 > **备注:** 所有 [HTML 包装方法](/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String#html_包装器方法)都已被弃用,并且仅为了兼容性而标准化。请使用 [DOM API](/zh-CN/docs/Web/API/Document_Object_Model)(例如 [`document.createElement()`](/zh-CN/docs/Web/API/Document/createElement))代替。