每当我试图运行到代码线下, 它不执行 < br/ > 作为断线, 但实际上执行为字符串 。
const firstFiveLetters = chartData.centerText.slice(0, 5);
const remainingLetters = chartData.centerText.slice(5);
// Return the text with line break after the first five letters
return `${firstFiveLetters}<br>${remainingLetters}`;
我期待执行第一个但不能执行的 html 元素后出现断线。