Skip to content

Commit

Permalink
[zh-cn]: Update translation of String.bold() (#15304)
Browse files Browse the repository at this point in the history
Co-authored-by: A1lo <[email protected]>
  • Loading branch information
JasonLamv-t and yin1999 authored Aug 21, 2023
1 parent 41c954b commit b685ae4
Showing 1 changed file with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,28 @@ slug: Web/JavaScript/Reference/Global_Objects/String/bold

{{JSRef}} {{deprecated_header}}

**`bold()`** 方法会创建 HTML 元素“b”,并将字符串加粗展示。
{{jsxref("String")}} 值的 **`bold()`** 方法创建一个 {{HTMLElement("b")}} 元素字符串,其中嵌入了调用的字符串(`<b>str</b>`),这会导致该字符串以粗体显示。

> **备注:** 所有 [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.bold()
```js-nolint
bold()
```

### 返回值

包含 HTML 元素 {{HTMLElement("b")}} 的字符串。

## 描述

`bold()` 方法将一个字符串嵌入到\<b>\</b>标记中。
一个以 `<b>` 开始标签开头的字符串,接着是文本 `str`,然后是 `</b>` 结束标签。

## 示例

### 使用 `bold()`
### 使用 bold()

下面的例子使用字符串方法来改变字符串的格式。
以下示例使用已弃用的字符串方法来更改字符串的格式:

```js
var worldString = "Hello, world";
const worldString = "Hello, world";

console.log(worldString.blink()); // <blink>Hello, world</blink>
console.log(worldString.bold()); // <b>Hello, world</b>
Expand All @@ -46,6 +44,7 @@ console.log(worldString.strike()); // <strike>Hello, world</strike>

## 参见

- [`core-js``String.prototype.bold` 的 polyfill](https://github.com/zloirock/core-js#ecmascript-string-and-regexp)
- {{jsxref("String.prototype.blink()")}}
- {{jsxref("String.prototype.italics()")}}
- {{jsxref("String.prototype.strike()")}}

0 comments on commit b685ae4

Please sign in to comment.