Skip to content

Commit

Permalink
[zh-cn]: update the translation of HTML <body> element
Browse files Browse the repository at this point in the history
  • Loading branch information
T34-active committed Jan 10, 2025
1 parent be6b9f9 commit 985cda2
Showing 1 changed file with 62 additions and 34 deletions.
96 changes: 62 additions & 34 deletions files/zh-cn/web/html/element/body/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: <body>:文档主体元素
slug: Web/HTML/Element/body
l10n:
sourceCommit: e3f162d122a38c8dc81a1e733894c5c54d134454
sourceCommit: 8fbec5312b62d720f6ff6936024a09c859f2f0f1
---

{{HTMLSidebar}}
Expand All @@ -11,60 +11,87 @@ l10n:

## 属性

这个元素只包含[全局属性](/zh-CN/docs/Web/HTML/Global_attributes)
这个元素只包含[全局属性](/zh-CN/docs/Web/HTML/Global_attributes)、事件属性和弃用属性:

- `alink` {{deprecated_inline}}
- : 选中时超链接文本的颜色。**请勿使用此属性!请结合使用 CSS {{cssxref("color")}} 属性和 {{cssxref(":active")}} 伪类来代替。**
- `background` {{deprecated_inline}}
- : 用作背景的图片的 URI。**请勿使用此属性!请在元素上使用 CSS {{cssxref("background")}} 属性来代替。**
- `bgcolor` {{deprecated_inline}}
- : 文档的背景颜色。**请勿使用此属性!请在元素上使用 CSS {{cssxref("background-color")}} 属性来代替。**
- `bottommargin` {{deprecated_inline}}
- : body 底部的外边距。**请勿使用此属性!请在元素上使用 CSS {{cssxref("margin-bottom")}} 属性来代替。**
- `leftmargin` {{deprecated_inline}}
- : body 左侧的外边距。**请勿使用此属性!请在元素上使用 CSS {{cssxref("margin-left")}} 属性来代替。**
- `link` {{deprecated_inline}}
- : 未访问超文本链接文本的颜色。**请勿使用此属性!请结合使用 CSS {{cssxref("color")}} 属性和 {{cssxref(":link")}} 伪类来代替。**
- `onafterprint`
### 事件属性

> [!NOTE]
> 以下每个事件属性名称都链接到其对应的 {{domxref("Window")}} 接口事件。你可以使用 [> `addEventListener()`](/zh-CN/docs/Web/API/EventTarget/addEventListener) 来监听这些事件,而不是将 `oneventname` 属性添加到
> `<body>` 元素。
- [`onafterprint`](/zh-CN/docs/Web/API/Window/afterprint_event)
- : 当用户打印文档后调用的函数。
- `onbeforeprint`
- [`onbeforeprint`](/zh-CN/docs/Web/API/Window/beforeprint_event)
- : 当用户要求打印文档时调用的函数。
- `onbeforeunload`
- [`onbeforeunload`](/zh-CN/docs/Web/API/Window/beforeunload_event)
- : 当文档即将卸载时调用的函数。
- `onblur`
- [`onblur`](/zh-CN/docs/Web/API/Window/blur_event)
- : 当文档失去焦点时调用的函数。
- `onerror`
- [`onerror`](/zh-CN/docs/Web/API/Window/error_event)
- : 当文档无法正常加载时调用的函数。
- `onfocus`
- [`onfocus`](/zh-CN/docs/Web/API/Window/focus_event)
- : 当文档收到焦点时调用的函数。
- `onhashchange`
- [`onhashchange`](/zh-CN/docs/Web/API/Window/hashchange_event)
- : 当文档当前地址的片段标识符部分(以 `'#'` 字符开头)发生变化时调用的函数。
- `onlanguagechange`
- [`onlanguagechange`](/zh-CN/docs/Web/API/Window/languagechange_event)
- : 当首选语言发生变化时调用的函数。
- `onload`
- [`onload`](/zh-CN/docs/Web/API/Window/load_event)
- : 当文档加载完成后调用的函数。
- `onmessage`
- [`onmessage`](/zh-CN/docs/Web/API/Window/message_event)
- : 当文档收到消息时调用的函数。
- `onoffline`
- [`onmessageerror`](/zh-CN/docs/Web/API/Window/messageerror_event)
- : 当文档收到无法反序列化的消息时调用的函数。
- [`onoffline`](/zh-CN/docs/Web/API/Window/offline_event)
- : 当网络通信失败时调用的函数。
- `ononline`
- [`ononline`](/zh-CN/docs/Web/API/Window/online_event)
- : 当网络通信恢复后调用的函数。
- `onpopstate`
- [`onpageswap`](/zh-CN/docs/Web/API/Window/pageswap_event)
- : 当你浏览文档时,上一个文档即将卸载时调用的函数。
- [`onpagehide`](/zh-CN/docs/Web/API/Window/pagehide_event)
- : 当浏览器在显示会话历史记录中的另一个页面时隐藏当前页面时调用的函数。
- [`onpagereveal`](/zh-CN/docs/Web/API/Window/pagereveal_event)
- : 当文档首次渲染时调用的函数,无论是从网络加载新文档还是激活文档。
- [`onpageshow`](/zh-CN/docs/Web/API/Window/pageshow_event)
- : 当浏览器因导航而显示窗口文档时调用的函数。
- [`onpopstate`](/zh-CN/docs/Web/API/Window/popstate_event)
- : 当用户浏览会话历史时调用的函数。
- `onresize`
- [`onresize`](/zh-CN/docs/Web/API/Window/resize_event)
- : 当文档大小调整时调用的函数。
- `onstorage`
- [`onrejectionhandled`](/zh-CN/docs/Web/API/Window/rejectionhandled_event)
- : 当 JavaScript {{jsxref("Promise")}} 被延迟处理时调用的函数。
- [`onstorage`](/zh-CN/docs/Web/API/Window/storage_event)
- : 当存储区域发生变化时调用的函数。
- `onunload`
- [`onunhandledrejection`](/zh-CN/docs/Web/API/Window/unhandledrejection_event)
- : 当一个没有拒绝处理器的 JavaScript {{jsxref("Promise")}} 被拒绝时调用的函数。
- [`onunload`](/zh-CN/docs/Web/API/Window/unload_event)
- : 当文档即将被卸载时调用的函数。

### 已弃用的属性

> [!WARNING]
> 请勿使用这些已弃用的属性;应选择每个弃用属性所列的 CSS 替代方案。
- `alink` {{deprecated_inline}}
- : 选中时超链接文本的颜色。请结合使用 CSS {{cssxref("color")}} 属性,配合 {{cssxref(":active")}} 和 {{cssxref(":
focus")}} 伪类。
- `background` {{deprecated_inline}}
- : 用作背景的图片的 URI。请改用 CSS 的 {{cssxref("background-image")}} 属性。
- `bgcolor` {{deprecated_inline}}
- : 文档的背景颜色。请改用 CSS 的 {{cssxref("background-color")}} 属性。
- `bottommargin` {{deprecated_inline}}
- : body 底部的外边距。请改用 CSS 的 {{cssxref("margin-bottom")}} 属性(或逻辑属性 {{cssxref("margin-block-end")}})。
- `leftmargin` {{deprecated_inline}}
- : body 左侧的外边距。请改用 CSS 的 {{cssxref("margin-left")}} 属性(或逻辑属性 {{cssxref("margin-inline-start")}})。
- `link` {{deprecated_inline}}
- : 未访问超文本链接文本的颜色。请结合使用 CSS {{cssxref("color")}} 属性和 {{cssxref(":link")}} 伪类来代替。
- `rightmargin` {{deprecated_inline}}
- : body 右侧的外边距。**请勿使用此属性!请在元素上使用 CSS {{cssxref("margin-right")}} 属性来代替。**
- : body 右侧的外边距。请结合使用 CSS {{cssxref("margin-right")}} 属性(或逻辑属性 {{cssxref("margin-inline-end")}})。
- `text` {{deprecated_inline}}
- : 文字的前景色。**请勿使用此属性!请在元素上使用 CSS {{cssxref("color")}} 属性来代替。**
- : 文字的前景色。请改用 CSS {{cssxref("color")}} 属性。
- `topmargin` {{deprecated_inline}}
- : body 顶部的外边距。**请勿使用此属性!在元素上使用 CSS {{cssxref("margin-top")}} 属性来代替。**
- : body 顶部的外边距。请结合使用 CSS {{cssxref("margin-top")}} 属性(或逻辑属性 {{cssxref("margin-block-start")}})。
- `vlink` {{deprecated_inline}}
- : 已访问超文本链接文本的颜色。**请勿使用此属性!请结合使用 CSS {{cssxref("color")}} 属性和 {{cssxref(":visited")}} 伪类来代替。**
- : 已访问超文本链接文本的颜色。请结合使用 CSS {{cssxref("color")}} 属性和 {{cssxref(":visited")}} 伪类来代替。

## 示例

Expand Down Expand Up @@ -163,3 +190,4 @@ l10n:

- {{HTMLElement("html")}}
- {{HTMLElement("head")}}
- [事件处理器(概述)](/zh-CN/docs/Web/Events/Event_handlers)

0 comments on commit 985cda2

Please sign in to comment.