How do I get document.embeds to work in JavaScript?

PHPz
Release: 2023-09-04 11:13:06
forward
988 people have browsed it

How do I get document.embeds to work in JavaScript?

Use the document.embeds property in JavaScript to get the number of tags in the document.

Example

You can try running the following code to implement the document.embeds property in JavaScript.

Real-time demonstration

<!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>
Copy after login

The above is the detailed content of How do I get document.embeds to work in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template