<applet> 標簽
HTML <applet> 標簽 - HTML5 不支持
使用 <applet> 標簽時,常用的三個屬性是:code 屬性、width 屬性以及 height 屬性。
code 屬性的值一定是您存放 applet 類的路徑。
width 屬性表示您的 applet 在瀏覽器中占用的寬度。
height 屬性表示您的 applet 在瀏覽器中占用的高度。
如下示例:
實例:<applet> 標簽實例
<applet code="Bubbles.class" width="350" height="350">
Java applet that draws animated bubbles.
</applet>
計算機學習推薦