aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/guide/working_with_objects
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:06 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commitc4576ded828eb9a5ef5f032c8f9409a7116f80a1 (patch)
treea26eb256f89eb1b8b2a9c65f1e0183509622807e /files/zh-cn/web/javascript/guide/working_with_objects
parentf7b137a3dff09fb8f976140d16029ad6ec5cf2b5 (diff)
downloadtranslated-content-c4576ded828eb9a5ef5f032c8f9409a7116f80a1.tar.gz
translated-content-c4576ded828eb9a5ef5f032c8f9409a7116f80a1.tar.bz2
translated-content-c4576ded828eb9a5ef5f032c8f9409a7116f80a1.zip
remove id attribute not in heading for zh-CN
Diffstat (limited to 'files/zh-cn/web/javascript/guide/working_with_objects')
-rw-r--r--files/zh-cn/web/javascript/guide/working_with_objects/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/guide/working_with_objects/index.html b/files/zh-cn/web/javascript/guide/working_with_objects/index.html
index eb20cf56b1..1092d05e0a 100644
--- a/files/zh-cn/web/javascript/guide/working_with_objects/index.html
+++ b/files/zh-cn/web/javascript/guide/working_with_objects/index.html
@@ -10,7 +10,7 @@ tags:
- 比较对象
translation_of: Web/JavaScript/Guide/Working_with_Objects
---
-<div><a id="#%E5%AF%B9%E8%B1%A1%E5%92%8C%E5%B1%9E%E6%80%A7" name="#%E5%AF%B9%E8%B1%A1%E5%92%8C%E5%B1%9E%E6%80%A7"></a>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Text_formatting", "Web/JavaScript/Guide/Details_of_the_Object_Model")}}</div>
+<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Text_formatting", "Web/JavaScript/Guide/Details_of_the_Object_Model")}}</div>
<p class="summary">JavaScript 的设计是一个简单的基于对象的范式。一个对象就是一系列属性的集合,一个属性包含一个名和一个值。一个属性的值可以是函数,这种情况下属性也被称为<em>方法</em>。除了浏览器里面预定义的那些对象之外,你也可以定义你自己的对象。本章节讲述了怎么使用对象、属性、函数和方法,怎样实现自定义对象。</p>