diff options
Diffstat (limited to 'files/zh-cn/web/javascript/reference/functions/get/index.html')
-rw-r--r-- | files/zh-cn/web/javascript/reference/functions/get/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/reference/functions/get/index.html b/files/zh-cn/web/javascript/reference/functions/get/index.html index 613bb86276..feb8c2f37a 100644 --- a/files/zh-cn/web/javascript/reference/functions/get/index.html +++ b/files/zh-cn/web/javascript/reference/functions/get/index.html @@ -102,8 +102,8 @@ console.log(obj.foo); // "bar"</pre> <li>如果被使用,它将被访问几次,并且不需要重新计算,该值将永远不会被改变,或者不应该被重新计算。</li> </ul> -<div class="blockIndicator note"> -<p>这意味着你不应该为你希望更改其值的属性使用懒 getter,因为 getter 不会重新计算该值。</p> +<div class="note"> +<p><strong>备注:</strong>这意味着你不应该为你希望更改其值的属性使用懒 getter,因为 getter 不会重新计算该值。</p> </div> <p>在以下示例中,对象具有一个 getter 属性。在获取属性时,该属性将从对象中删除并重新添加,但此时将隐式显示为数据属性。最后返回得到值。</p> |