von Thomas Salvador.
Nachfolgendes ist ein Beispiel für die Intergration eine Applets zu Navigation, 132x500 Pixel groß. Für nicht java-fähige Browser gibt es eine alternative Ausgabe.
<applet codebase="//www.example.org/java" code="navigation.class" width="132" height="500" alt="Navigation per Applet">Hier eine alternative Navigation</applet>
<applet> wird verwendet, um ein Java-Applet in die Seite einzubinden. Dabei wird in code die zu ladende Klasse angegeben. codebase enthält ggf. den URL zu einem Verzeichnis,
I.a. handelt es sich um ein Verzeichnis, vom dem aus aulle Klassen, Grafiken, usw. erreichbar sind.
Die Ausdehnung des Applets wird mit width und height angegeben, seine Beschreibung mit alt (ähnlich zu <img>).
Der Elementinhalt kann aus zwei Dingen bestehen.
<applet> nutzt die Attribute:
Attribut | Beschreibung |
---|---|
align | Ausrichtung des Elementes |
alt | Alternativbeschreibung von Applets |
archive | Archive List bei Applets |
class | Space-separierte Liste von CSS-Klassen |
code | Applet Class File |
codebase | Basis-URL für Applet |
height | Anfangshöhe festlegen |
hspace | horizontaler Abstand |
id | Universalattribut |
name | Name einer Appletinstanz |
object | serialisierte Form des Applet |
onload | Auszuführender Javascript-Code, wenn Grafik/Applet fertig geladen wurde |
style | Inline Style |
title | Bezeichnender Titel |
vspace | vertikaler Abstand |
width | Breite des Applet |
Die HTML-Anweisung <applet> wird von den Browsern Avant Palm OS, Avant Windows, Chrome, Firefox, Internet Explorer, Netscape, Opera, Safari und Web TV / MSN interpretiert.
Die HTML Anweisung <applet> wird mindestens in den Standards HTML und XHTML definiert.
Der Tag <applet> kann die HTML Tags <a>, <abbr>, <acronym>, <applet>, <b>, <basefont>, <bdo>, <big>, <br>, <button>, <cite>, <code>, <dfn>, <em>, <font>, <i>, <iframe>, <img>, <input>, <kbd>, <label>, <map>, <object>, <param>, <q>, <s>, <samp>, <script>, <select>, <small>, <span>, <strike>, <strong>, <sub>, <sup>, <textarea>, <tt>, <u> und <var> enthalten.
<applet> kann in den HTML Befehlen <a>, <abbr>, <acronym>, <address>, <applet>, <b>, <bdo>, <big>, <blockquote>, <body>, <button>, <caption>, <center>, <cite>, <code>, <dd>, <del>, <dfn>, <div>, <dt>, <em>, <fieldset>, <font>, <form>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <i>, <iframe>, <ins>, <kbd>, <label>, <legend>, <li>, <noframes>, <noscript>, <object>, <p>, <pre>, <q>, <s>, <samp>, <small>, <span>, <strike>, <strong>, <sub>, <sup>, <td>, <th>, <tt>, <u> und <var> enthalten sein.
Keine.