我怎样才能显示 if - else 语句,以便它真正起作用?提前致谢
var data = d3.selectAll('.values_half_before').nodes();
var pie = d3.pie() //we create this variable, for the values to be readeable in the console
.value(function(d) {
return d.innerHTML;
})(data);
console.log('pie', pie)
if (pie = ['0', '0', '0']) {
console.log('it is a null vector');
} else {
console.log('it is not a null vector');
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js"></script>
<div class="values_half_before">1</div>
<div class="values_half_before">0</div>
<div class="values_half_before">0</div>
重要提示:我希望脚本通过更改 if - else 语句而不是上半部分来工作。
守候你守候我
相关分类