- 已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。
这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
16小时前关门了。
Improve this question
boldPartialText(text) {
let textArr = text.split(' ');
if (textArr.indexOf('make') !== -1 && textArr.indexOf("boldtext") !== -1) {
textArr.splice(textArr.indexOf('make') - 1, 0, "<span class='make-it-bold'>");
textArr.splice(textArr.indexOf("boldtext") + 1, 0, "</span>");
}
return textArr.join(' ');
}
let result = boldPartialText('some content comint from server so make it boldtext and enjoy.');
.make-it-bold {
font-weight:bold;
};
<p> some content comint from server so make it boldtext and enjoy. </p>
我正在
标签,我在这里绑定服务器内容,如下所示。
<p> "content coming from server <span class='make-it-bold'> make it bold </span> so how to do it" </p>
我正在处理<p>
标签之间的文本,以添加一个<span>
标签(到我想使其加粗的文本)。但它不起作用。
.make-it-bold {
font-weight: bold;
}
1条答案
按热度按时间disbfnqx1#
不要把类放在span元素中,而要把它放在p元素中。