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


d3.js d3.select()用法及代碼示例


D3.js中的d3.select()函數用於選擇與指定選擇器字符串匹配的第一個元素。如果任何元素都不匹配,則返回空選擇。如果選擇器匹配了多個元素,則隻會選擇第一個匹配元素。

用法:

d3.select("element")

參數:此函數接受包含元素名稱的單個參數。


返回值:此函數返回選定的元素。

以下程序說明了D3.js中的d3.select()函數:

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        D3.js | d3.select() Function 
    </title> 
      
    <script src = "https://d3js.org/d3.v4.min.js"></script> 
</head> 
  
<body> 
      
    <div>GeeksforGeeks</div> 
      
    <script> 
      
        // Calling the select() function 
        var a = d3.select("div").text(); 
          
        // Getting the selected element 
        console.log(a); 
    </script> 
</body> 
  
</html>                    

輸出:

GeeksforGeeks 

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
         
    <title> 
        D3.js | d3.select() Function 
    </title> 
      
    <script src="https://d3js.org/d3.v4.min.js"></script> 
</head> 
   
<body> 
    <p>GeeksforGeeks</p> 
         
    <p>A computer science portal for geeks</p> 
         
    <script> 
         
        // Calling the select() function 
        var a = d3.select("p").text(); 
            
        // Getting the selected element 
        console.log(a); 
    </script> 
</body> 
     
</html>

輸出:

GeeksforGeeks

參考: https://devdocs.io/d3~5/d3-selection#select



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.select() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。