HTML CSS Reference/HTML Tag Reference/frameset

Материал из Web эксперт
Перейти к: навигация, поиск

"frameset" CSS Attributes and JavaScript Style Properties

Names noted with an asterisk (*) are JavaScript properties only.
+----------------+--------------------------------------------------------------+
| CSS            |background-position-x           background-position-y         |
| Attributes     |behavior                        border-bottom                 |
| and            |border-left                     border-right                  |
| JavaScript     |border-top                      filter                        |
| Style          |height                          layout-grid                   |
| Properties     |layout-grid-mode                pixelBottom(*)                |
|                |pixelHeight(*)                  pixelLeft(*)                  |
|                |pixelRight(*)                   pixelTop(*)                   |
|                |pixelWidth(*)                   posBottom(*)                  |
|                |posHeight(*)                    posLeft(*)                    |
|                |posRight(*)                     posTop(*)                     |
|                |posWidth(*)                     text-underline-position       |
|                |zoom                                                          |
+----------------+--------------------------------------------------------------+



"frameset" Event Handlers

+----------------+--------------------------------------------------------------+
| Event          |onActivate                      onAfterPrint                  |
| Handlers       |onAfterUpdate                   onBeforeDeactivate            |
|                |onBeforePrint                   onBeforeUnload                |
|                |onBeforeUpdate                  onBlur                        |
|                |onControlSelect                 onDeactivate                  |
|                |onFocus                         onLoad                        |
|                |onMove                          onMoveEnd                     |
|                |onMoveStart                     onResizeEnd                   |
|                |onResizeStart                   onUnload                      |
+----------------+--------------------------------------------------------------+



"frameset" Example

    
<html>
<head>
<title>frameset element example</title>
</head>
<frameset rows="33%, 33%, *" cols="33%, 33%, *">
    <frame name="frame_1" src="frame1.html">
    <frame name="frame_2" src="frame2.html">
    <frame name="frame_3" src="frame3.html">
    <frame name="frame_4" src="frame4.html">
    <frame name="frame_5" src="frame5.html">
    <frame name="frame_6" src="frame6.html">
    <frame name="frame_7" src="frame7.html">
    <frame name="frame_8" src="frame8.html">
    <frame name="frame_9" src="frame9.html">
</frameset>
<noframes>Your system doesn"t support frames.</noframes>
</html>



"frameset" HTML Attributes

+----------------+--------------------------------------------------------------+
| HTML           |border                          bordercolor                   |
| Attributes     |class                           cols                          |
|                |frameborder                     framespacing                  |
|                |hidefocus                       id                            |
|                |lang                            language                      |
|                |name                            rows                          |
|                |style                           tabindex                      |
|                |title                           unselectable                  |
|                |width                                                         |
+----------------+--------------------------------------------------------------+



"frameset" JavaScript Collections

+----------------+--------------------------------------------------------------+
| JavaScript     |all                             attributes                    |
| Collections    |behaviorUrns                    childNodes                    |
|                |children                                                      |
+----------------+--------------------------------------------------------------+



"frameset" JavaScript Methods

+----------------+--------------------------------------------------------------+
| JavaScript     |addBehavior                     appendChild                   |
| Methods        |applyElement                    attachEvent                   |
|                |blur                            clearAttributes               |
|                |cloneNode                       componentFromPoint            |
|                |contains                        detachEvent                   |
|                |fireEvent                       focus                         |
|                |getAdjacentText                 getAttribute                  |
|                |getAttributeNode                getElementsByTagName          |
|                |hasChildNodes                   insertAdjacentElement         |
|                |insertAdjacentHTML              insertAdjacentText            |
|                |insertBefore                    mergeAttributes               |
|                |normalize                       removeAttribute               |
|                |removeAttributeNode             removeBehavior                |
|                |removeChild                     removeNode                    |
|                |replaceAdjacentText             replaceChild                  |
|                |replaceNode                     setActive                     |
|                |setAttribute                    setAttributeNode              |
|                |swapNode                                                      |
+----------------+--------------------------------------------------------------+



"frameset" JavaScript Objects

+----------------+--------------------------------------------------------------+
| JavaScript     |runtimeStyle                    style                         |
+----------------+--------------------------------------------------------------+



"frameset" JavaScript Properties

+----------------+--------------------------------------------------------------+
| JavaScript     |border                          borderColor                   |
| Properties     |canHaveChildren                 canHaveHTML                   |
|                |className                       clientHeight                  |
|                |clientWidth                     cols                          |
|                |dir                             firstChild                    |
|                |frameBorder                     frameSpacing                  |
|                |hideFocus                       id                            |
|                |innerHTML                       isContentEditable             |
|                |isDisabled                      isMultiLine                   |
|                |isTextEdit                      lang                          |
|                |language                        lastChild                     |
|                |name                            nextSibling                   |
|                |nodeName                        nodeType                      |
|                |nodeValue                       offsetHeight                  |
|                |offsetLeft                      offsetParent                  |
|                |offsetTop                       offsetWidth                   |
|                |outerHTML                       ownerDocument                 |
|                |parentElement                   parentNode                    |
|                |parentTextEdit                  previousSibling               |
|                |readyState                      rows                          |
|                |scopeName                       scrollHeight                  |
|                |scrollLeft                      scrollTop                     |
|                |scrollWidth                     sourceIndex                   |
|                |tabIndex                        tagName                       |
|                |tagUrn                          title                         |
|                |uniqueID                        width                         |
+----------------+--------------------------------------------------------------+



"frameset" Microsoft Behaviors

+----------------+--------------------------------------------------------------+
| Microsoft      |clientCaps                      download                      |
| Behaviors      |homePage                                                      |
+----------------+--------------------------------------------------------------+



"frameset" Microsoft Filters

+----------------+--------------------------------------------------------------+
| Microsoft      |Barn                            BasicImage                    |
| Filters        |Blinds                          Blur                          |
|                |CheckerBoard                    Compositor                    |
|                |Emboss                          Engrave                       |
|                |Fade                            GradientWipe                  |
|                |ICMFilter                       Inset                         |
|                |Iris                            Matrix                        |
|                |Pixelate                        RadialWipe                    |
|                |RandomBars                      RandomDissolve                |
|                |Slide                           Spiral                        |
|                |Stretch                         Strips                        |
|                |Wheel                           Zigzag                        |
+----------------+--------------------------------------------------------------+



"frameset" Syntax and Note

Note:
This element is used with the <frame> element.
The <frameset> tag replaces the <body> tag.
    
Syntax:
    
<frameset attributes events> . . . </frameset>