如何在d3.js中添加html特殊字符?

2ledvvac  于 2022-11-12  发布在  其他
关注(0)|答案(1)|浏览(166)

我想添加学位html代码°

const degreeNum = d3
        .select(`#windBox${order}`)
        .append("text")
        .attr("x", 250)
        .attr("y", 130)
        .style("font", "bold 50px sans-serif")
        .style("fill", "url(#lgTextDegree)")
        .text(`${degree}`); // here i want to add html code

我尝试像这样的模板文字

.text(`${°}`)

但不工作。如何解决这个问题??

9njqaruj

9njqaruj1#

尝试.text(String.fromCharCode(176))
第一个
请注意,使用转义字符(\\)对~符号进行转义

相关问题