gpt4 book ai didi

javascript - 在 innerText 中加粗一个词

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:32 25 4
gpt4 key购买 nike

我想在段落中加粗一些单词。到目前为止,我尝试过使用 HTML 标记,然后才意识到这不起作用。有没有办法在不获取元素的情况下做到这一点?

var text2_2 = document.createElement("p");
text2_2.className = "reasoning";
text2_2.innerText = "All vitamins are <strong>required</strong> by our ..."

最佳答案

因为字符串中包含一些 HTML 并且要获得使用 innerHTML 而不是 innerText 的效果。

var text2_2 = document.createElement("p");
text2_2.className = "reasoning";
text2_2.innerHTML = "All vitamins are <strong>required</strong> by our ..."

document.body.appendChild(text2_2);

关于javascript - 在 innerText 中加粗一个词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48819396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com