问题是:点击HTML页面上的按钮后,页面上的html <h5>
标记文本发生变化,但<h5>
标记文本颜色不会变为蓝色(预期行为,因为点击按钮后CSS样式不会重新加载)。
解决此问题的可能变通方法是什么?
const btn = document.querySelector(".test");
btn.addEventListener("click", () => {
a1 = document.createElement('h5');
a1.className = "first";
a1.textContent = 'Blue updated.';
document.getElementById('position').innerHTML = a1.innerText;
//newtext = document.createTextNode('abc');
});
.test {
color: blue;
}
.first {
color: blue;
}
<h5 id="position">Text Color to be replaced to blue after hitting Blue button(but not happening)</h5>
<button class="test">Change to blue</button>
在上面,单击按钮并触发操作侦听器后,使用a1 = document.createElement('h5'); a1.className = "first"
创建HTML <h5>
标记元素代码。显示新文本,但颜色没有更改(变为蓝色)。
1条答案
按热度按时间xqkwcwgp1#
您只插入了textContent,而不是appending整个新的H5元素
PS:您还可以创建一些漂亮的可重用函数来处理DOM查询和元素创建,使用一种友好的语法:
一个一个三个一个一个一个一个一个四个一个一个一个一个一个五个一个