电池管理器 - Web API 接口参考 编辑

指示设备电池当前是否正在充电的Boolean值

Syntax 句法

var charging = battery.charging

返回当前是否正在对 BatteryManager 对象的设备充电,如果正在充电则返回 true,否则返回 false.

Example 例子

HTML Content (内容)

<div id="charging">(charging state unknown)</div>

JavaScript 内容

navigator.getBattery().then(function(battery) {

    var charging = battery.charging;

    document.querySelector('#charging').textContent = charging ;
});

Specifications 规格

SpecificationStatusComment
Battery Status APICandidate RecommendationInitial definition

Browser compatibility浏览器兼容性We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help! Desktop Mobile

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support39.010 (10) moz
16 (16)[1]
52 (52)[3]
未实现25未实现
FeatureAndroidAndroid WebviewFirefox Mobile (Gecko)IE MobileOpera MobileSafari MobileChrome for Android
Basic support未实现40.010.0 (10) moz
16.0 (16)[1]
52.0 (52)[3]
未实现25[2]未实现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 (Firefox 18.0 / Thunderbird 18.0 / SeaMonkey 2.15). Firefox also provide support for the deprecated navigator.battery.

[2] Values for BatteryManager.chargingTime and BatteryManager.dischargingTime are always equal to Infinity.

[3] From Firefox 52 onwards, the Battery Status API is only available in chrome/privileged code.

See also 也可以看看

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:123 次

字数:6426

最后编辑:6 年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文