--- title: BatteryManager.charging slug: Web/API/BatteryManager/charging translation_of: Web/API/BatteryManager/charging ---
현재 배터리가 충전중인지를 나타내는 Boolean 값 입니다.
var charging = battery.charging
charging
변수는 배터리가 충전 중인지의 여부를 가져옵니다. 충전중일경우
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') }}
Specification | Status | Comment |
---|---|---|
{{SpecName("Battery API")}} | {{Spec2("Battery API")}} | Initial definition |
{{CompatibilityTable}}
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | {{CompatChrome(39.0)}} | {{CompatGeckoDesktop("10")}} {{property_prefix("moz")}} {{CompatGeckoDesktop("16")}}[1] |
{{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] |
{{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
.