blob: 050fc2a432de1d4068a9d10a566f3c3f9ea8b6d8 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
---
title: BatteryManager(电源管理)
slug: Web/API/BatteryManager
translation_of: Web/API/BatteryManager
---
<p>{{APIRef}}</p>
<p>BatteryManager 接口提供方法获取系统电量。 </p>
<p>{{domxref("navigator.getBattery")}} 方法返回一个promise对象,该promise将提供一个BatteryManager接口,你可以从<a href="/en-US/docs/Web/API/Battery_Status_API">Battery Status API</a> 查询到相关信息。</p>
<h2 id="属性">属性</h2>
<dl>
<dt>{{domxref("BatteryManager.charging")}} {{ReadOnlyInline}}</dt>
<dd>一个布尔值,说明当前电池是否正在充电。</dd>
<dt>{{domxref("BatteryManager.chargingTime")}} {{ReadOnlyInline}}</dt>
<dd>一个数字,代表距离充电完毕还需多少秒,如果为0则充电完毕。</dd>
<dt>{{domxref("BatteryManager.dischargingTime")}} {{ReadOnlyInline}}</dt>
<dd>一个数字,代表距离电池耗电至空且挂起需要多少秒。</dd>
<dt>{{domxref("BatteryManager.level")}} {{ReadOnlyInline}}</dt>
<dd>一个数字,代表电量的放大等级,这个值在 0.0 至 1.0 之间。</dd>
</dl>
<h3 id="事件处理器">事件处理器</h3>
<dl>
<dt>{{domxref("BatteryManager.onchargingchange")}}</dt>
<dd>{{event("chargingchange")}}事件处理器;电池充电状态更新时被调用。</dd>
<dt>{{domxref("BatteryManager.onchargingtimechange")}}</dt>
<dd>{{event("chargingtimechange")}}事件处理器;电池充电时间更新时被调用。</dd>
<dt>{{domxref("BatteryManager.ondischargingtimechange")}}</dt>
<dd>{{event("dischargingtimechange")}}事件处理器;电池断开充电时间更新时被调用。</dd>
<dt>{{domxref("BatteryManager.onlevelchange")}}</dt>
<dd>{{event("levelchange")}}事件处理器;电池电量更新时被调用。</dd>
</dl>
<h2 id="方法">方法</h2>
<p>继承自{{domxref("EventTarget")}}:</p>
<p>{{page("/zh-CN/docs/Web/API/EventTarget","Methods")}}</p>
<h2 id="规格Specifications">规格Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("Battery API")}}</td>
<td>{{Spec2("Battery API")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>基本支持</td>
<td>{{CompatChrome(39.0)}}</td>
<td>{{CompatGeckoDesktop("10")}} {{property_prefix("moz")}}<br>
{{CompatGeckoDesktop("16")}}<sup>[1]</sup></td>
<td>{{CompatNo}}</td>
<td>25</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Android Webview</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
<th>Chrome for Android</th>
</tr>
<tr>
<td>基本支持</td>
<td>{{CompatNo}}</td>
<td>{{CompatChrome(40.0)}}</td>
<td>{{CompatGeckoMobile("10")}} {{property_prefix("moz")}}<br>
{{CompatGeckoMobile("16")}}<sup>[1]</sup></td>
<td>{{CompatNo}}</td>
<td>25<sup>[2]</sup></td>
<td>{{CompatNo}}</td>
<td>{{CompatChrome(42.0)}}<sup>[2]</sup></td>
</tr>
</tbody>
</table>
</div>
<p>[1] 在Firefox 10.0中默认无效,但可设定preference <code>dom.battery.enabled</code>为<code>true从而使其有效化。</code>自Firefox 11.0起,<code>mozBattery默认有效。</code>Battery API现能被支持与Android,Windows,和安装了UPower的Linux。自Gecko 18.0 {{geckoRelease("18.0")}}也能支持MacOS。Firefox还为被弃用的{{domxref("navigator.battery")}}提供支持。</p>
<p>[2] {{domxref("BatteryManager.chargingTime")}}和{{domxref("BatteryManager.dischargingTime")}}的值总是等于无穷。</p>
<h2 id="其他">其他</h2>
<ul>
<li>The <a href="/zh-CN/docs/Web/API/Battery_Status_API">电池状态API</a></li>
<li>{{domxref("navigator.getBattery")}}</li>
</ul>
|