English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
<noframes> ist ein HTML-Element, das für Browser verwendet wird, die das <frame>-Element nicht unterstützen, oder für solche Browser, die so konfiguriert sind. Sie können in <noframes> alle HTML-Elemente verwenden, die Sie im <body> erwarten können, außer den <frameset>- und <frame>-Elementen.
Zeigt drei Frame-Frameworks an. Wenn Frame nicht unterstützt wird, wird der Text des <noframes>-Tags angezeigt:
<html> <frameset cols="25%,50%,25%"> <frame src="frame_a.htm"> <frame src="frame_b.htm"> <frame src="frame_c.htm"> <noframes>Entschuldigung, Ihr Browser unterstützt keine Rahmen!</noframes>/noframes> </frameset> </html>Testen Sie es heraus ‹/›
IEFirefoxOperaChromeSafari
Derzeit unterstützen die meisten Browser den <noframes>-Tag.
HTML5 Der <noframes>-Tag wird nicht unterstützt.
Das <noframes>-Element kann Text für Browser anzeigen, die Rahmen nicht unterstützen. Das noframes-Element befindet sich innerhalb des frameset-Elements.
Das <noframes>-Element wird im <frameset>-Element eingesetzt.
Hinweis: Wenn Sie eine Seite mit Rahmen überprüfen möchten, stellen Sie sicher, dass die DTD auf "Frameset DTD" eingestellt ist.
HTML5Der <noframes>-Tag wird nicht unterstützt, HTML 4.01 Diese Tag wird unterstützt.
Wichtig: In der XHTML-Frameset DTD muss der Text im <noframes>-Element mit einem Schließungszeichen enden.
In HTML 4.01 Enthält <noframes>, die folgenden Standardattribute unterstützen:
Attribute | Value | Description |
---|---|---|
class | classname | Klassenname des Elements |
dir | rtl ltr | Textausrichtung des Inhalts im Element |
id | id | Eindeutige ID des Elements |
lang | language_code | Sprachcode des Inhalts in den Definitionselementen |
style | style_definition | Specifies the inline style of the element |
title | text | Specifies additional information about the element |
xml:lang | language_code | Specifies the language code for the content of the element in an XHTML document |
For a complete description, please visitStandard Attributes.
In HTML 4.01 In, the <noframes> tag supports the following event attributes:
Attribute | Value | Description |
---|---|---|
onclick | script | Execute script when the mouse is clicked |
ondblclick | script | Execute script when the mouse is double-clicked |
onmousedown | script | Execute script when the mouse button is pressed |
onmousemove | script | Execute script when the mouse pointer moves |
onmouseout | script | Execute script when the mouse pointer leaves an element |
onmouseover | script | Execute script when the mouse pointer hovers over an element |
onmouseup | script | Execute script when the mouse button is released |
onkeydown | script | Execute script when the keyboard is pressed |
onkeypress | script | Execute script when the keyboard is pressed and then released |
onkeyup | script | Execute script when the keyboard is released |
For a complete description, please visitEvent Attributes.