--- title: 电池管理器 slug: Web/API/BatteryManager/charging tags: - 电池 API translation_of: Web/API/BatteryManager/charging ---
{{APIRef("Battery API")}}
指示设备电池当前是否正在充电的Boolean值
var charging = battery.charging
返回当前是否正在对 {{domxref("BatteryManager")}} 对象的设备充电,如果正在充电则返回 true
,否则返回 false
.
<div id="charging">(charging state unknown)</div>
navigator.getBattery().then(function(battery) { var charging = battery.charging; document.querySelector('#charging').textContent = charging ; });
{{ EmbedLiveSample('Example', '100%', 30) }}
Specification | Status | Comment |
---|---|---|
{{SpecName("Battery API")}} | {{Spec2("Battery API")}} | Initial definition |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | {{CompatChrome(39.0)}} | {{CompatGeckoDesktop("10")}} {{property_prefix("moz")}} {{CompatGeckoDesktop("16")}}[1] {{CompatGeckoDesktop("52")}}[3] |
{{CompatNo}} | 25 | {{CompatNo}} |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | {{CompatNo}} | {{CompatChrome(40.0)}} | {{CompatGeckoMobile("10")}} {{property_prefix("moz")}} {{CompatGeckoMobile("16")}}[1] {{CompatGeckoMobile("52")}}[3] |
{{CompatNo}} | 25[2] | {{CompatNo}} | {{CompatChrome(42.0)}}[2] |
[1] Disabled by default in Firefox 10.0, but can be enabled setting the preference dom.battery.enabled
to true
. Starting with Firefox 11.0, mozBattery
is enabled by default. The Battery API is currently supported on Android, Windows, and Linux with UPower installed. Support for MacOS is available starting with Gecko 18.0 {{geckoRelease("18.0")}}. Firefox also provide support for the deprecated {{domxref("navigator.battery")}}.
[2] Values for {{domxref("BatteryManager.chargingTime")}} and {{domxref("BatteryManager.dischargingTime")}} are always equal to Infinity
.
[3] From Firefox 52 onwards, the Battery Status API is only available in chrome/privileged code.