HTML CSS Reference/HTML Tag Reference/frameset

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

"frameset" CSS Attributes and JavaScript Style Properties

   <source lang="html4strict">

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 | +----------------+--------------------------------------------------------------+

     </source>
   
  


"frameset" Event Handlers

   <source lang="html4strict">

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

     </source>
   
  


"frameset" Example

   <source lang="html4strict">
   

<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>


     </source>
   
  


"frameset" HTML Attributes

   <source lang="html4strict">

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

     </source>
   
  


"frameset" JavaScript Collections

   <source lang="html4strict">

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

     </source>
   
  


"frameset" JavaScript Methods

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | 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 | +----------------+--------------------------------------------------------------+

     </source>
   
  


"frameset" JavaScript Objects

   <source lang="html4strict">

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

     </source>
   
  


"frameset" JavaScript Properties

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | 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 | +----------------+--------------------------------------------------------------+

     </source>
   
  


"frameset" Microsoft Behaviors

   <source lang="html4strict">

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

     </source>
   
  


"frameset" Microsoft Filters

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | 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 | +----------------+--------------------------------------------------------------+

     </source>
   
  


"frameset" Syntax and Note

   <source lang="html4strict">

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

Syntax:

<frameset attributes events> . . . </frameset>


     </source>