ใช้คุณสมบัติ document.embeds ใน JavaScript เพื่อรับจำนวนแท็ก
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คุณสมบัติ document.embeds ใน JavaScript
<!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>