html applet标签怎么用

html applet标签怎么用,第1张

html applet标签怎么用 html applet标签用于定义嵌入的applet,某些浏览器中依然存在对<applet>但是需要额外的插件和安装过程才能起作用。

html applet标签怎么用?

作用:定义嵌入的 applet。

说明:

某些浏览器中依然存在对 <applet> 但是需要额外的插件和安装过程才能起作用。

注释:

HTML5 不支持 <applet> 标签。请使用 <object> 标签代替它。在 HTML 4.01 中,<applet> 元素 已废弃。

html applet标签使用示例

<!DOCTYPE html>
<html>
<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>

结果如:

以上就是html applet标签怎么用的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/693355.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-22
下一篇 2022-04-22

发表评论

登录后才能评论

评论列表(0条)

保存