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

html applet标签怎么用-LMLPHP

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标签怎么用-LMLPHP

以上就是html applet标签怎么用的详细内容,更多请关注Work网其它相关文章!

08-25 19:29