引号内的模板文字

Template literals inside of quotation marks

我该如何编写它才能正常工作?

document.getElementById("td-`${i}`")

您应该使用引用字符串的模板文字代替,而不是在其中:

document.getElementById(`td-${i}`)
// Here ----------------^-------^