英 [??pl?t]? ?美 ['?pl?t]??

n.Java的程序;支程序,小應(yīng)用程序;小型程式;程序類(lèi)型

復(fù)數(shù): applets

html applet標(biāo)簽 語(yǔ)法

作用:定義嵌入的 applet。

說(shuō)明:某些瀏覽器中依然存在對(duì) <applet> 但是需要額外的插件和安裝過(guò)程才能起作用。

注釋?zhuān)?/strong>HTML5 不支持 <applet> 標(biāo)簽。請(qǐng)使用?<object>?標(biāo)簽代替它。在 HTML 4.01 中,<applet> 元素?已廢棄。

html applet標(biāo)簽 示例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<applet code="Bubbles.class" width="350" height="350">
    Java applet that draws animated bubbles.
</applet>
</body>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線(xiàn)實(shí)例