我正在尝试在多个标题上更改fontstyle - 仅使用Javascript。
function smurfa() {
document.body.innerHTML =
document.body.innerHTML.replace(/Katt/g,'Smurf');
document.body.innerHTML =
document.body.innerHTML.replace(/katt/g,'smurf');
alert("YOU GOT SMURFED!");
document.querySelectorAll('h1, h2, h3').forEach(function(tag) {
tag.innerHTML = tag.innerHTML.toUpperCase();
tag.innerHTML = tag.innerHTML.fontcolor("red");
});
}
答案 0 :(得分:0)
我认为你应该使用css进行样式化,但是如果你想这样做那么
const headers = document.querySelectorAll("h1, h2, h3")
headers.forEach(x => x.style.fontStyle = 'italic');