PHP前端开发

如何在JavaScript中使用document.embeds进行工作?

百变鹏仔 3个月前 (09-22) #HTML
文章标签 如何在

使用 JavaScript 中的 document.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>