BatteryManager - Web APIs 编辑
Deprecated
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The BatteryManager
interface provides ways to get information about the system's battery charge level.
The navigator.getBattery()
method returns a battery promise that is resolved in a BatteryManager
interface which you can use to interact with the Battery Status API.
Properties
BatteryManager.charging
Read only- A Boolean value indicating whether or not the battery is currently being charged.
BatteryManager.chargingTime
Read only- A number representing the remaining time in seconds until the battery is fully charged, or 0 if the battery is already fully charged.
BatteryManager.dischargingTime
Read only- A number representing the remaining time in seconds until the battery is completely discharged and the system will suspend.
BatteryManager.level
Read only- A number representing the system's battery charge level scaled to a value between 0.0 and 1.0.
Event handlers
BatteryManager.onchargingchange
- A handler for the
chargingchange
event; This event is sent when the battery charging state is updated. BatteryManager.onchargingtimechange
- A handler for the
chargingtimechange
event; This event is sent when the battery charging time is updated BatteryManager.ondischargingtimechange
- A handler for the
dischargingtimechange
event; This event is sent when the battery discharging time is updated. BatteryManager.onlevelchange
- A handler for the
levelchange
event; This event is sent when the battery level is updated.
Methods
Inherited from EventTarget
:
EventTarget.addEventListener()
- Registers an event handler of a specific event type on the
EventTarget
. EventTarget.removeEventListener()
- Removes an event listener from the
EventTarget
. EventTarget.dispatchEvent()
- Dispatches an event to this
EventTarget
.
Additional methods in Mozilla chrome codebase
Mozilla includes a couple of extensions for use by JS-implemented event targets to implement onevent
properties.
See also WebIDL bindings.
void setEventHandler(DOMString type, EventHandler handler)
EventHandler getEventHandler(DOMString type)
Specifications
Specification | Status | Comment |
---|---|---|
Battery Status API | Candidate Recommendation | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论