1.9 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.9 KiB
		
	
	
	
	
	
	
	
id, title, required, challengeType, videoUrl, localeTitle
| id | title | required | challengeType | videoUrl | localeTitle | |||
|---|---|---|---|---|---|---|---|---|
| 587d7fa7367417b2b2512bc8 | Add Classes with D3 | 
 | 6 | 使用D3添加类 | 
Description
attr()方法,可以向元素添加任何HTML属性,包括类名。 attr()方法的工作方式与style()工作方式相同。它采用逗号分隔值,并可以使用回调函数。这是一个向选择中添加“容器”类的示例: selection.attr("class", "container"); Instructions
attr()方法添加到编辑器中的代码中,并在div元素上添加一个bar类。 Tests
tests:
  - text: 你的<code>div</code>元素应该有一类<code>bar</code> 。
    testString: 'assert($("div").attr("class") == "bar", "Your <code>div</code> elements should have a class of <code>bar</code>.");'
  - text: 您的代码应使用<code>attr()</code>方法。
    testString: 'assert(code.match(/\.attr/g), "Your code should use the <code>attr()</code> method.");'
Challenge Seed
<style>
  .bar {
    width: 25px;
    height: 100px;
    display: inline-block;
    background-color: blue;
  }
</style>
<body>
  <script>
    const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
    d3.select("body").selectAll("div")
      .data(dataset)
      .enter()
      .append("div")
      // Add your code below this line
      // Add your code above this line
  </script>
</body>
Solution
// solution required