我一直在关注Lynda上的D3教程,以学习D3(希望可以使用 D3用于大学作业)。直到我开始使用JS为某些文本设置样式之前,一切都进行得很好。让我给你演示。
这是我的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>D3 Graphic</title>
<link rel="stylesheet" href="_d3/base.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>D3 Graphic</h2>
<section id="chart">
<div class="item">Barot Bellingham</div>
<div class="item">Hassum Harrod</div>
<div class="item">Jennifer Jerome</div>
<div class="item">Richard Tweet</div>
<div class="item">Lorenzo Garcia</div>
<div class="item">Xhou Ta</div>
</section>
</div>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="script.js"></script>
</body>
</html>
这是我的script.js
d3.selectAll('.item:nth-child(3)')
.style({
'background': '#268BD2',
'padding': '10px',
'margin' : '5px',
'color' : '#EEE8D5'
})
这是我的style.css
.highlight {
color: #C64C6F;
font-weight: 600;
}
.item {
padding-left: 30px;
}
.bigger {
font-size: 150%;
}
我一直在逐步遵循本教程,甚至复制并粘贴了导师提供的代码,以确保我没有键入错误的内容。但是即使如此,当我在浏览器中加载index.html文件(chrome和我尝试使用Firefox)时,页面仍未显示JS命令。 我很沮丧,因为这可能是最简单的事情,但是我似乎找不到任何答案。