gpt4 book ai didi

javascript - createTextNode 不保持字体样式

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

所以现在我正在处理一个动态添加内容的列表。所以到目前为止我有这段代码,这是我的 javascript

$("#textBox").keypress(function(e) {
if(e.keyCode == 13)
addToSticky();
});

function addToSticky() {
if(count < 5){
var text = document.getElementById("textBox").value;
var node = document.createElement("LI");
var textnode = document.createTextNode(text);
node.appendChild(textnode);
document.getElementById("list").appendChild(node);
count = count + 1;
}else
hideBox("textBox");
}

这是我的html

<a href="#" class="sticky" STYLE="text-decoration: none">
<h2 STYLE="font-size:200%; font-weight:bold; padding-bottom:10px; margin-top: 4px">
Notes
</h2>
<p>
<ul id="list" STYLE="padding-left: 20px">
<li> <b>Hire this guy! </b></li>
</ul>
<input type="text" name="input" id="textBox">
</p>
</a>

最后但同样重要的是,在我的 css 中,我将

  • 和我的

    都将字体样式设置为我的自定义字体。但是,当您输入要添加到列表中的内容时,它会输入自定义字体,但是当它最终添加到 appendChild 时,它不再具有自定义字体。

  • 最佳答案

    第一个元素的文本包含在一个粗体标签内,在它后面添加的则没有。

    如果你想让列表项加粗,最好的方法是使用 CSS 设置所有列表项元素的 font-weight 属性:

    li {
    font-weight : bold;
    }

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