我是D3的新手,但我正在研究一切。这是我在StackOverflow上的第二篇文章。
底部的代码显示在本页的“Attr()”部分:
http://www.tutorialsteacher.com/d3js/dom-manipulation-using-d3js
问题是它不会将文本颜色更改为红色。我今天下午读过几十篇文章,但没有任何作用。我知道我可以使用内联“样式”命令,但我想了解所有替代方案。
<!doctype html>
<html>
<head>
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
.error {
color: 'red'
}
</style>
</head>
<body>
<p>Error: This is dummy error.</p>
<script>
d3.select("p").attr("class","error");
</script>
</body>
</html>
答案 0 :(得分:0)