我想添加学位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(`${°}`)
但不工作。如何解决这个问题??
1条答案
按热度按时间9njqaruj1#
尝试
.text(String.fromCharCode(176))
第一个
请注意,使用转义字符(
\\
)对~
符号进行转义