D3.js | d3.selectAll()函数
D3.js 中的d3.selectAll()函数用于选择与指定选择器字符串匹配的所有元素。
句法:
d3.selectAll("element")
参数:此函数接受单个参数HTML 标记作为参数。
返回值:此函数返回选定的元素。
下面的程序说明了 D3.js 中的d3.selectAll()函数:
示例 1:
D3.js | d3.selectAll() Function
Geeks
GeeksforGeeks
输出:
Geeks
GeeksforGeeks
示例 2:
D3.js | d3.selectAll() Function
GeeksforGeeks
A computer science portal for geeks
d3.selectAll() function
输出:
GeeksforGeeks
A computer science portal for geeks
d3.selectAll() function
参考: https://devdocs.io/d3~5/d3-selection#selectAll