$(".model5").html('是'+<font style="color:red"> term</font>+'期');这段代码应该怎么拼接呢,term是个变量,想给他个颜色
1 回答
慕的地6264312
TA贡献1817条经验 获得超6个赞
是要這樣嗎?
$(".model5").html('是<font style="color:red">' + term + '</font>期');
但是 font
元素,在 HTML5
是不支援的,甚至 HTML4
時代就已經不建議這麼做了,強烈建議改成:
$(".model5").html('是<span style="color:red">' + term + '</span>期');
添加回答
举报
0/150
提交
取消