aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/object/tolocalestring/index.html
blob: bb3ec0e75686b9fb94d94f56873d6c20c83d28e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
title: Object.prototype.toLocaleString()
slug: Web/JavaScript/Reference/Global_Objects/Object/toLocaleString
tags:
  - JavaScript
  - Method
  - Object
  - Prototype
translation_of: Web/JavaScript/Reference/Global_Objects/Object/toLocaleString
---
<div>{{JSRef("Global_Objects", "Object")}}</div>

<p><code><strong>toLocaleString()</strong></code> 方法返回一个该对象的字符串表示。此方法被用于派生对象为了特定语言环境的目的(locale-specific purposes)而重载使用。</p>

<h2 id="Syntax">语法</h2>

<pre class="syntaxbox"><code><var>obj</var>.toLocaleString();</code>
</pre>

<h3 id="返回值">返回值</h3>

<p>表示对象的字符串。</p>

<h2 id="Description">描述</h2>

<p>{{jsxref("Object")}} <code>toLocaleString</code> 返回调用 {{jsxref("Object.toString", "toString()")}} 的结果。</p>

<p>该函数提供给对象一个通用的<code>toLocaleString</code> 方法,即使不是全部都可以使用它。 见下面的列表。</p>

<h3 id="覆盖_toLocaleString_的对象">覆盖 <code>toLocaleString</code> 的对象</h3>

<ul>
 <li>{{jsxref("Array")}}{{jsxref("Array.prototype.toLocaleString()")}}</li>
 <li>{{jsxref("Number")}}{{jsxref("Number.prototype.toLocaleString()")}}</li>
 <li>{{jsxref("Date")}}{{jsxref("Date.prototype.toLocaleString()")}}</li>
</ul>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('ES3')}}</td>
   <td>{{Spec2('ES3')}}</td>
   <td>Initial definition.</td>
  </tr>
  <tr>
   <td>{{SpecName('ES5.1', '#sec-15.2.4.3', 'Object.prototype.toLocaleString')}}</td>
   <td>{{Spec2('ES5.1')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('ES6', '#sec-object.prototype.tolocalestring', 'Object.prototype.toLocaleString')}}</td>
   <td>{{Spec2('ES6')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-object.prototype.tolocalestring', 'Object.prototype.toLocaleString')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p>{{Compat("javascript.builtins.Object.toLocaleString")}}</p>

<h2 id="See_also">相关链接</h2>

<ul>
 <li>{{jsxref("Object.prototype.toString()")}}</li>
</ul>