📜  HTML | DOM 链接集合

📅  最后修改于: 2021-11-07 08:39:31             🧑  作者: Mango

DOM 链接集合用于返回 HTML 文档中具有“href”属性的所有 元素的集合。集合中的元素按照它们在源代码中的显示进行排序。
句法:

document.links

属性:它包含单个属性长度,用于返回集合中 元素的数量。
方法DOM 链接集合包含下面列出的三个方法:

返回值:一个 HTMLCollection 对象,表示文档中的所有 元素和/或 元素。集合中的元素按照它们在源代码中的出现进行排序

下面的程序说明了文档.links 属性在 HTML 中的使用:
示例 1:使用 length 属性计算集合中的链接元素数。

html


html


 

    
        DOM document.links() Property
    
 
    

 

    

GeeksforGeeks

      

Articles:

                          

The IDs of all the links are:

      
 


html


 

    
        DOM document.links() Property
    
 
    

 

    

GeeksforGeeks

      

Articles:

                     

      The href attribute in the link       with id of 'js' is:     

        
 


输出:

之前计算链接

示例 2:用于查找文档中所有链接并返回其 ID 的 HTML 代码。

html



 

    
        DOM document.links() Property
    
 
    

 

    

GeeksforGeeks

      

Articles:

                          

The IDs of all the links are:

      
 

输出:
点击按钮前:

查找 ID 之前

点击按钮后:

查找 ID 之后

示例 3:使用 id 属性通过链接 ID 查找并显示其 href 属性

html



 

    
        DOM document.links() Property
    
 
    

 

    

GeeksforGeeks

      

Articles:

                     

      The href attribute in the link       with id of 'js' is:     

        
 

输出:
点击按钮前:

之前通过 ID 查找

点击按钮后:

之后按 ID 查找

支持的浏览器: DOM链接收集方式支持的浏览器如下:

  • 铬合金
  • IE浏览器
  • 火狐
  • 歌剧
  • 苹果浏览器