我有一个Java脚本代码,当我单击“提交”按钮时,它将在“列表”项中添加列表。但我希望我的列表具有“ X”按钮或专门用于删除目的的“×”。我的代码是这样的:

    const closeBtn = document.createElement('button');

    closeBtn.className = "closeBtn";

    closeBtn.type = "button";

    closeBtn.textContent = "×";


但是我没有得到我想要的X按钮,而是得到了这样的按钮:

最佳答案

首先使用×而不是$times;

其次,使用.innerHTML而不是textContent



const closeBtn = document.createElement('button');
closeBtn.className = "closeBtn";
closeBtn.type = "button";
closeBtn.innerHTML = "×" //String.fromCharCode("×");

document.querySelector('.content').append(closeBtn)

.closeBtn{
  font-size: 20px;
}

<div class="content"></div>

10-06 06:16