Html-applet-tag

提供:Dev Guides
移動先:案内検索

HTML-<applet>タグ

説明

HTML <applet>タグは、アプレットを指定します。 これは、HTML文書内にJavaアプレットを埋め込むために使用されます。 HTML5ではサポートされていません。

<!DOCTYPE html>
<html>

   <head>
      <title>HTML applet Tag</title>
   </head>

   <body>
      <applet code = "newClass.class" width = "300" height = "200"></applet>
   </body>

</html>

ここに_newClass.java_ファイルがあります-

import java.applet.*;
import java.awt.*;

public class newClass extends Applet {
   public void paint (Graphics gh) {
      g.drawString("finddevguides.com", 300, 150);
   }
}

これは、次の結果を生成します-

グローバル属性

このタグは、リンク:/html/html_attributes_reference [HTML属性リファレンス]で説明されているすべてのグローバル属性をサポートします

特定の属性

HTML <>タグは、次の追加属性もサポートしています-

Attribute Value Description
align URL Deprecated − Defines the text alignment around the applet
alt URL Alternate text to be displayed in case browser does not support applet
archive URL Applet path when it is stored in a Java Archive ie. jar file
code URL A URL that points to the class of the applet
codebase URL Indicates the base URL of the applet if the code attribute is relative
height pixels Height to display the applet
hspace pixels Deprecated − Defines the left and right spacing around the applet
name name Defines a unique name for the applet
object name Specifies the resource that contains a serialized representation of the applet’s state.
title test Additional information to be displayed in tool tip of the mouse
vspace pixels Deprecated − Amount of white space to be inserted above and below the object.
width pixels Width to display the applet.

イベント属性

このタグは、link:/html/html_events_reference [HTMLイベントリファレンス]で説明されているすべてのイベント属性をサポートしています。

ブラウザのサポート

Chrome Firefox IE Opera Safari Android
No Yes Yes No Yes No