當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM document plugins屬性用法及代碼示例


HTML DOM插件屬性返回一個HTMLCollection對象,該對象包含一個或多個當前文檔的嵌入元素或插件。這是一個隻讀屬性。

用法:

objects = document.plugins

返回值:

如果文檔中沒有嵌入式元素或插件,則為HTMLCollection對象或“null”對象。



例:本示例說明如何獲取文檔的插件。

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM document  
        plugins property 
    </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <embed src="hello.PNG"> 
    <embed src="hello.PNG"> 
    <br> 
  
    <button onclick="get()"> 
        CLICK HERE 
    </button> 
      
    <script type="text/javascript"> 
        function get() { 
            console.log(document.plugins); 
        } 
    </script> 
</body> 
  
</html>

輸出:

  • 單擊按鈕之前:

  • 單擊按鈕後:

支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari

相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 HTML DOM document plugins Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。