如何用 JavaScript 操作 document.embeds?


使用 JavaScript 中的 document.embeds 属性获取文档中 <embeds> 标签的数量。

示例

你可以尝试运行以下代码来实现 JavaScript 中的 document.embeds 属性。

在线演示

<!DOCTYPE html>
<html>
   <head>
      <title>JavaScript Example</title>
   </head>
   <body>
      <embed src = "/html/yourfile.mid" width = "250" height = "100" />
      <script>
         var num = document.embeds.length;
         document.write("<br>How many embed tags: "+num);
      </script>
   </body>
</html>

更新于: 2020-05-20

139 次浏览

启动你的 职业生涯

通过完成课程获得认证

开始吧
广告