当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.set.remove()用法及代码示例


set.remove()是D3.js中的一个函数。如果给定数组包含指定值,则将其删除并返回true。否则,此函数不执行任何操作并返回false。

用法:

d3.set([Array]).remove(element);

参数:此函数接受两个参数,如下所示:


  • Array:这是给定的元素数组(字符串)。
  • element:这是将要搜索到给定数组中的值,如果存在该值,则将其删除,然后返回true,否则不执行任何操作并返回false。

返回值:如果给定数组包含指定值,则返回true;否则,返回false。
注意:它不保存更新的数组。
下面的程序演示了D3.js中的d3.set.remove()函数。范例1:

<!DOCTYPE html> 
<html> 
    
<head> 
    <title> d3.set.remove() Function</title> 
        
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
<body> 
    
  <script> 
      
     // Initialising an array 
     Array1 = ["a", "a", "b", "c"]; 
     Array2 = ["c", "c", "c"]; 
     Array3 = ["Geeks", "gfg", "GeeksforGeeks"]; 
       
     // Calling the d3.set.remove() function 
     A = d3.set(Array1).remove("a"); 
     B = d3.set(Array2).remove("a"); 
     C = d3.set(Array3).remove("Geeks"); 
       
     // Getting the value true if the specified element 
     // is present in the array otherwise false 
     console.log(A); 
     console.log(B); 
     console.log(C); 
  </script> 
</body>

输出:

true
false
true

范例2:

<!DOCTYPE html> 
<html> 
    
<head> 
    <title> d3.set.remove() Function</title> 
        
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
<body> 
    
  <script> 
       
     // Calling the d3.set.remove() function 
     // with a array and a element as the parameter  
     A = d3.set([1, 2, 3, 3]).remove(4); 
     B = d3.set(["a"]).remove("a"); 
     C = d3.set(["a", "b", "c", "a", "b", "c"]).remove("d"); 
       
     // Getting the value true if the specified element 
     // is present in the array otherwise false 
     console.log(A); 
     console.log(B); 
     console.log(C); 
  </script> 
</body>

输出:

false
true
false

参考: https://devdocs.io/d3~5/d3-collection#set_remove



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.set.remove() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。