HTMLBodyElement
HTMLBodyElement
接口提供了特殊的属性(除了它们继承的常规的HTMLElement
接口)以外,还可以处理 body 元素。属性
从其父项HTMLElement
和WindowEventHandlers
中继承属性。
HTMLBodyElement.aLink
- Is a
DOMString
that represents the color of active hyperlinks. HTMLBodyElement.background
- Is a
DOMString
that represents the description of the location of the background image resource. Note that this is not an URI, though some older version of some browsers do expect it. HTMLBodyElement.bgColor
- Is a
DOMString
that represents the background color for the document. HTMLBodyElement.link
- Is a
DOMString
that represents the color of unvisited links. HTMLBodyElement.text
- Is a
DOMString
that represents the foreground color of text. HTMLBodyElement.vLink
- Is a
DOMString
that represents the color of visited links.
方法
No specific methods; inherits methods from its parent, HTMLElement
and from WindowEventHandlers
.
事件处理
No specific event handlers; inherits event handlers from its parent, HTMLElement
and from WindowEventHandlers
.
WindowEventHandlers.onafterprint
- Is an
event handler
representing the code to be called when theafterprint (en-US)
event is raised. WindowEventHandlers.onbeforeprint
- Is an
event handler
representing the code to be called when thebeforeprint (en-US)
event is raised. WindowEventHandlers.onbeforeunload
- Is an
event handler
representing the code to be called when thebeforeunload (en-US)
event is raised. WindowEventHandlers.onhashchange
- Is an
event handler
representing the code to be called when thehashchange (en-US)
event is raised. WindowEventHandlers.onlanguagechange
Experimental- Is an
event handler
representing the code to be called when thelanguagechange (en-US)
event is raised. WindowEventHandlers.onmessage
- Is an
event handler
called whenever an object receives amessage
event. WindowEventHandlers.onmessageerror
- Is an
event handler
called whenever an object receives amessageerror
event. WindowEventHandlers.onoffline
- Is an
event handler
representing the code to be called when theoffline (en-US)
event is raised. WindowEventHandlers.ononline
- Is an
event handler
representing the code to be called when theonline (en-US)
event is raised. WindowEventHandlers.onpagehide
- Is an
event handler
representing the code to be called when thepagehide (en-US)
event is raised. WindowEventHandlers.onpageshow
- Is an
event handler
representing the code to be called when thepageshow (en-US)
event is raised. WindowEventHandlers.onpopstate
- Is an
event handler
representing the code to be called when thepopstate (en-US)
event is raised. WindowEventHandlers.onrejectionhandled
(en-US)- An
event handler
representing the code executed when therejectionhandled
event is raised, indicating that aPromise
was rejected and the rejection has been handled. WindowEventHandlers.onresize
- Is an
event handler
representing the code to be called when theresize (en-US)
event is raised. WindowEventHandlers.onstorage
- Is an
event handler
representing the code to be called when thestorage (en-US)
event is raised. WindowEventHandlers.onunhandledrejection
(en-US)- An
event handler
representing the code executed when theunhandledrejection
event is raised, indicating that aPromise
was rejected but the rejection was not handled. WindowEventHandlers.onunload
- Is an
event handler
representing the code to be called when theunload (en-US)
event is raised.
规范
Specification | Status | Comment |
---|---|---|
HTML Living Standard HTMLBodyElement |
Living Standard | Technically, the event-related properties onafterprint , onbeforeprint , onbeforeunload , onblur , onerror , onfocus , onhashchange , onlanguagechange , onload , onmessage , onoffline , ononline , onpopstate , onresize , onstorage , and onunload , have been moved to WindowEventHandlers . HTMLBodyElement implements this interface. |
HTML 5.1 HTMLBodyElement |
Recommendation | |
HTML5 HTMLBodyElement |
Recommendation | The following properties are now obsolete: aLink , bgColor , background , link , text , and vLink .The following properties have been added: onafterprint , onbeforeprint , onbeforeunload , onblur , onerror , onfocus , onhashchange , onload , onmessage , onoffline , ononline , onpopstate , onresize , onstorage , and onunload . |
Document Object Model (DOM) Level 2 HTML Specification HTMLBodyElement |
Obsolete | No change from Document Object Model (DOM) Level 1 Specification. |
Document Object Model (DOM) Level 1 Specification HTMLBodyElement |
Obsolete | Initial definition. |
浏览器兼容性
BCD tables only load in the browser
参考阅读
- HTML element implementing this interface:
<body>
WindowEventHandlers