HTML-Ausgabe-Tag
Übersetzungsergebnisse:
Englisch [ˈaʊtpʊt] US [ˈaʊtˌpʊt]
n.Ausgabe; [Anzahl] Ausgabesignal
Plural: Ausgaben
HTML-Ausgabe-TagSyntax
Funktion: Verschiedene Ausgabearten definieren, z. B. Skriptausgabe.
Hinweis: Das <output>-Tag ist ein neues Tag in HTML 5.
Hinweis: Internet Explorer 8 und frühere Versionen unterstützen das <output> nicht.
HTML-Ausgabe-TagBeispiel
<!DOCTYPE html> <html> <body> <form oninput="x.value=parseInt(a.value)+parseInt(b.value)">0 <input type="range" id="a" value="50">100 +<input type="number" id="b" value="50"> =<output name="x" for="a b"></output> </form> <p><b>注释:</b>Internet Explorer 不支持 output 标签。</p> </body> </html>
Instanz ausführen »
Klicken Sie auf die Schaltfläche „Instanz ausführen“, um die Online-Instanz anzuzeigen